-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.72 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css" integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Responsive Navbar</title>
</head>
<body>
<header>
<div class="navbar">
<div class="logo">
<a href="#">Responsive Navbar</a>
</div>
<ul class="links">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
<a href="#" class="action_btn">
Get Started
</a>
<div class="toggle_btn"><i class="fa-solid fa-bars"></i></div>
</div>
<div class="dropdown_menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#" class="action_btn">
Get Started
</a></li>
</div>
</header>
<main>
<section id="hero">
<h1>Welcome</h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing <br>elit. Praesentium, ut.</p>
</section>
</main>
<script src="app.js"></script>
<script>
</script>
</body>
</html>