-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (36 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Responsive Navbar using HTML, CSS & JS</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- ICONS -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css">
<!-- CUSTOM STYLING -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<nav>
<a href="/" class="not-blur"><img src="img/logo.png" alt="logo"></a>
<div class="nav-links not-blur" id="navLinks">
<i class="uil uil-times-circle" onclick="hideMenu()"></i>
<ul>
<li><a href="/">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">explore</a></li>
<li><a href="#">blog</a></li>
<li><a href="#">contact</a></li>
</ul>
</div>
<i class="uil uil-bars not-blur" onclick="showMenu()"></i>
</nav>
<div class="info-box">
<h1>Responsive Navbar Design</h1>
<p>A simple and responsive navbar design using HTML, CSS and JS</p>
</div>
</header>
<!-- CUSTOM SCRIPT -->
<script src="js/script.js"></script>
</body>
</html>