-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.html
66 lines (61 loc) · 1.89 KB
/
nav.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
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<!--[if lte IE 6]><html class="preIE7 preIE8 preIE9"><![endif]-->
<!--[if IE 7]><html class="preIE8 preIE9"><![endif]-->
<!--[if IE 8]><html class="preIE9"><![endif]-->
<!--[if gte IE 9]><!--><html><!--<![endif]-->
<script src="https://use.fontawesome.com/280fe010c4.js"></script>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>title</title>
<meta name="author" content="name">
<meta name="description" content="description here">
<meta name="keywords" content="keywords,here">
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=font1|font2|etc" type="text/css">
<link rel="stylesheet" href="styles/nav.css" type="text/css">
</head>
<body>
<nav class="main-nav">
<ul class="menu">
<li class="menu-home">
<a>
<i class="fa fa-home"></i>
<div class="menu-text">
<h4>HOME</h4>
<p>Start Here</p>
</div>
</a>
</li>
<li class="menu-products">
<a>
<i class="fa fa-shopping-basket"></i>
<div class="menu-text">
<h4>PRODUCTS</h4>
<p>Shop Now</p>
</div>
</a>
</li>
<li class="menu-blog">
<a>
<i class="fa fa-pencil"></i>
<div class="menu-text">
<h4>BLOG</h4>
<p>My Thoughts</p>
</div>
</a>
</li>
<li class="menu-contact">
<a>
<i class="fa fa-phone"></i>
<div class="menu-text">
<h4>CONTACT</h4>
<p>Get in Touch</p>
</div>
</a>
</li>
</ul>
</nav>
</body>
</html>