-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Viewport" content="width-device-width, initial-scale=1.0">
<title>Interactive navigation menu</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav id="navbar">
<div class="container">
<div class="logo">MY SITE</div>
<ul>
<li><a href="#Home">Home</a></li>
<li><a href="#Contact">Contact</a></li>
<li><a href="#About">About</a></li>
<li><a href="#Services">Services</a></li>
</ul>
</div>
</nav>
<div id="content"></div>
<section id="home"></section>
<h1>home</h1>
<p>welcome to the home page</p>
<section id="about"></section>
<h1>about</h1>
<p>learn more about us</p>
<section id="services"></section>
<h1>services</h1>
<p>discover our services</p>
<section id="contact"></section>
<h1>contact</h1>
<p>get in touch with us</p>
</section>
<script src="script.js"></script>
</body>
</html>