-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (36 loc) · 1.07 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Responsive navbar styling</title>
</head>
<body>
<div class="ham">
<button class="ham-btn" id="ham-btn">HAM</button>
</div>
<nav class="nav-bar">
<ul class="item-container">
<li> <a href="#home" class="nav-item active">HOME</a></li>
<li> <a href="#about" class="nav-item">ABOUT</a></li>
<li> <a href="#content" class="nav-item">CONTENT</a></li>
<li> <a href="#contact" class="nav-item">CONTACT</a></li>
</ul>
</nav>
<section class="section" id="home">
<h1>Home</h1>
</section>
<section class="section" id="about">
<h1>About</h1>
</section>
<section class="section" id="content">
<h1>Content</h1>
</section>
<section class="section" id="contact">
<h1>Contact</h1>
</section>
<script src="scrpit.js">
</script>
</body>
</html>