-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1009 Bytes
/
index.html
File metadata and controls
41 lines (36 loc) · 1009 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>INteractive Navbar</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<ul class="nav-menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</nav>
<section id="home">
<h1>Home Section</h1>
<p>Welcome to the home section.</p>
</section>
<section id="about">
<h1>About Section</h1>
<p>About us information.</p>
</section>
<section id="services">
<h1>Services Section</h1>
<p>Details about our services.</p>
</section>
<section id="contact">
<h1>Contact Section</h1>
<p>Contact us here.</p>
</section>
<script src="script.js"></script>
</body>
</html>