forked from JessicaVadimovna/team_project4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathburg.html
50 lines (45 loc) · 2.02 KB
/
burg.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
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Adaptive header for site</title>
</head>
<body>
<!-- <button class="hamburger">☰</button>
<button class="cross">˟</button> -->
<!-- <svg class="hamburger open" width="34px" height="34px" viewBox="0 0 32 32" enable-background="new 0 0 32 32"
id="Editable-line" version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g>
<g id="SVGRepo_iconCarrier">
<line fill="none" id="XMLID_103_" stroke="#000000" stroke-linecap="round" stroke-linejoin="round"
stroke-miterlimit="10" stroke-width="2" x1="7" x2="25" y1="16" y2="16"></line>
<line fill="none" id="XMLID_102_" stroke="#000000" stroke-linecap="round" stroke-linejoin="round"
stroke-miterlimit="10" stroke-width="2" x1="7" x2="25" y1="25" y2="25"></line>
<line fill="none" id="XMLID_101_" stroke="#000000" stroke-linecap="round" stroke-linejoin="round"
stroke-miterlimit="10" stroke-width="2" x1="7" x2="25" y1="7" y2="7"></line>
</g>
</svg> -->
<div class="header-links__burger-menu">
<div class="hamburger" onclick="burgerMenu(this)">
<div class="b1"></div>
<div class="b2"></div>
<div class="b3"></div>
</div>
<div class="menu">
<ul>
<li><a class="menuItem" href="#">Home</a></li>
<li><a class="menuItem" href="#">Profile</a></li>
<li><a class="menuItem" href="#">About</a></li>
<li><a class="menuItem" href="#">Contacts</a></li>
</ul>
</div>
</div>
<script src="js/header-links.js"></script>
</body>
</html>