<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dropdown Navigation Example</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<div class="header">
<h1>My Website</h1>
<p>Welcome to my website</p>
</div>
<!-- Navigation Bar -->
<div class="navbar">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<div class="dropdown">
<button class="dropbtn" onclick="toggleDropdown()">Courses</button>
<div class="dropdown-content" id="dropdown-menu">
<a href="#java">Java</a>
<a href="#html">HTML</a>
<a href="#python">Python</a>
</div>
</div>
<a href="#contact">Contact</a>
</div>
<!-- Main Content -->
<div class="content">
<h2>About Us</h2>
<p>This is the about section of the website.</p>
</div>
<!-- Footer Section -->
<div class="footer">
<p>© 2024 My Website</p>
</div>
<script src="script.js"></script>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dropdown Navigation Example</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<div class="header">
<h1>My Website</h1>
<p>Welcome to my website</p>
</div>
<!-- Navigation Bar -->
<div class="navbar">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<div class="dropdown">
<button class="dropbtn" onclick="toggleDropdown()">Courses</button>
<div class="dropdown-content" id="dropdown-menu">
<a href="#java">Java</a>
<a href="#html">HTML</a>
<a href="#python">Python</a>
</div>
</div>
<a href="#contact">Contact</a>
</div>
<!-- Main Content -->
<div class="content">
<h2>About Us</h2>
<p>This is the about section of the website.</p>
</div>
<!-- Footer Section -->
<div class="footer">
<p>© 2024 My Website</p>
</div>
<script src="script.js"></script>
</body>
</html>
👍1👎1