-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
32 lines (31 loc) · 1.16 KB
/
project.html
File metadata and controls
32 lines (31 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Projects</title>
<link rel="stylesheet" href="project.css">
</head>
<body>
<header class="head">
<h1 class="title">Portfolio</h1>
<button class="drop-menu" onclick="dropMenu()">menu</button>
<nav>
<ul class="pages" id="pages">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="projects">
<h2 style="text-align: center; margin: 0px; padding: 5px; color: whitesmoke;">My Projects</h2>
<ul class="deck" id="deck">
</ul>
</div>
<script src="projects.js"></script>
<script src="dropmenu.js"></script>
</body>
</html>