-
Notifications
You must be signed in to change notification settings - Fork 0
/
responsive-menu.html
56 lines (32 loc) · 1.05 KB
/
responsive-menu.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Responsive Header Nav</title>
<meta name="description" content="Responsive Header Nav">
<meta name="author" content="Treehouse">
<meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1">
<link rel="stylesheet" href="responsive-menu.css">
<!--[if IE]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<header>
<nav class="top-nav">
<a href="#" id="menu-icon"></a>
<ul>
<li><a href="" class="top-nav-link">portfolio</a></li>
<li><a href="" class="top-nav-link">work with me</a></li>
<li><a href="" class="top-nav-link"><span class="accent-text accent-menu">Grace</span></a></li>
<li><a href="" class="top-nav-link">blog</a></li>
<li><a href="" class="top-nav-link">contact</a></li>
</ul>
</nav>
</header>
<section>
<h1>Respond to Your Surroundings</h1>
<p>...Filler Text</p>
<p>...Filler Text</p>
<p>Filler Text</p>
</section>
</body>
</html>