-
Notifications
You must be signed in to change notification settings - Fork 79
/
header-2.html
34 lines (33 loc) · 1.13 KB
/
header-2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Headers - 2</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles/reset.min.css" />
<link rel="stylesheet" href="styles/style.css" />
<link rel="stylesheet" href="styles/header-2.css" />
</head>
<body>
<!-- Header Start -->
<header class="site-header">
<div class="wrapper site-header__wrapper">
<a href="#" class="brand">Brand</a>
<nav class="nav">
<button class="nav__toggle" aria-expanded="false" type="button">
menu
</button>
<ul class="nav__wrapper">
<li class="nav__item"><a href="#">Home</a></li>
<li class="nav__item"><a href="#">About</a></li>
<li class="nav__item nav__item--end"><a href="#">Services</a></li>
<li class="nav__item"><a href="#">Hire us</a></li>
<li class="nav__item"><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Header End -->
<script src="js/header-2.js"></script>
</body>
</html>