-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsection5.html
More file actions
38 lines (38 loc) · 1.35 KB
/
section5.html
File metadata and controls
38 lines (38 loc) · 1.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navbar with Dropdown</title>
<link rel="stylesheet" href="section5.css">
</head>
<body>
<nav class="navbar">
<ul class="nav-list">
<li class="nav-item">
<a href="#">Home</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="dropdown-toggle">Services <span class="dropdown-btn">▼</span></a>
<ul class="dropdown-menu">
<li><a href="#">Web Design</a></li>
<li><a href="#">Development</a></li>
<li><a href="#">SEO</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a href="#" class="dropdown-toggle">About <span class="dropdown-btn">▼</span></a>
<ul class="dropdown-menu">
<li><a href="#">Company</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Careers</a></li>
</ul>
</li>
<li class="nav-item">
<a href="#">Contact</a>
</li>
</ul>
</nav>
<script src="scripts.js"></script>
</body>
</html>