-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 2.33 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style/style.css" />
<link rel="icon" href="./assets/icons/favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<title>Responsive Header</title>
</head>
<body>
<!-- HEADER START-->
<header>
<!-- HAMBURGER MENU ICON START -->
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
</div>
<!-- HAMBURGER MENU ICON START -->
<!-- LOGO START-->
<div class="logo"><a href="#" target="_blank" rel="noopener noreferrer"><img src="./assets//images/Logo-Placeholder-White.png" alt="Logo" class="logo-img"></a></div>
<div class="logo-responsive"><a href="#" target="_blank" rel="noopener noreferrer"><img src="./assets//images/Logo-Placeholder-White-Mobile.png" alt="Logo" class="logo-img"></a></div>
<!-- LOGO END-->
<!-- MENU START-->
<nav class="desktop-menu">
<a href="#" class="nav-link">Home</a>
<a href="#" class="nav-link">About Us</a>
<a href="#" class="nav-link">Services</a>
<a href="#" class="nav-link">Products</a>
</nav>
<!-- MENU END-->
<!-- RESPONSIVE MENU BOX START -->
<div class="responsive-menu-box">
<div class="close">✖</div>
<div class="logo-box"><a href="#" target="_blank" rel="noopener noreferrer"><img src="./assets//images/Logo-Placeholder-White-Mobile.png" alt="Logo" class="logo-img"></div>
<div class="menu">
<a href="#">Home</a>
<a href="#">About Us</a>
<a href="#">Services</a>
<a href="#">Products</a>
</div>
</div>
<!-- RESPONSIVE MENU BOX END -->
<!-- CTA START-->
<div class="cta">
<a href="#" class="cta-button">Call to Action</a>
</div-CTA>
<!-- CTA END-->
</header>
<!-- HEADER END-->
<!-- Mobile Menu Toggle open/close script -->
<script src="./javascript/toggleMenu.js"></script>
<!-- Active Menu Color script -->
<script src="./javascript//activeMenu.js"></script>
</body>
</html>