-
Notifications
You must be signed in to change notification settings - Fork 3
/
Projects.html
39 lines (31 loc) · 904 Bytes
/
Projects.html
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
33
34
35
36
37
38
39
<html>
<head>
<title>My Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="js/menu.js"></script>
</head>
<body class="projects">
<header>
<img src="images/logo.png">
<nav class="menu">
<a class="button"><img src="icon.png" /></a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a href="Resume.html">Resume</a></li>
<li><a href="links.html">Links</a></li>
<li><a href="Projects.html">Projects</a></li>
</ul>
</nav>
</header>
<div class="text1"> <br><br><br><br><br><br>
<p>Coming soon.<br>
<br> Please come back!</p>
</div>
<footer>
©2019. JK All Rights Reserved
</footer>
</body>
</html>