-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathheader-11.html
52 lines (50 loc) · 1.87 KB
/
header-11.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Headers - 11</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-11.css" />
</head>
<body>
<!-- Header Start -->
<header class="site-header">
<div class="wrapper site-header__wrapper">
<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"><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>
<a href="#" class="brand">Brand</a>
<a href="#" class="button button--icon" aria-label="Sign in">
<svg
version="1.1"
viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg"
>
<g>
<path
d="m83.898 77.398c-2.3984-13-13.699-22.5-26.898-22.5h-13.699c-13.5 0-24.898 9.8008-27.102 23.102-1.1016 6.6992 4.1016 12.699 10.801 12.699h46.199c6.8008 0 12-6.1992 10.801-12.898z"
/>
<path
d="m36.102 44.199c7.8008 7.8008 20.398 8 28.398 0.39844l0.19922-0.19922c6.8984-6.6016 7.6016-17.301 1.5-24.699-8.3008-10-23.699-9.8008-31.699 0.39844-5.6016 7.1992-5 17.5 1.5 24z"
/>
</g>
</svg>
<span>Sign in</span>
</a>
</div>
</header>
<!-- Header End -->
<script src="js/header-11.js"></script>
</body>
</html>