abongile-bundle
Version:
clickable dropdown
26 lines (23 loc) • 738 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./src/styles.css" />
<title>Drop down</title>
</head>
<body>
<div class="dropdown">
<button class="dropbtn">Dropdown</button>
<div id="myDropdown" class="dropdown-content">
<a href="#features">Home</a>
<a href="#explore">About</a>
<a href="#esthetics">Contact</a>
</div>
</div>
<h3>Dropdown Menu inside a Navigation Bar</h3>
<p>Click the "Dropdown" button to toggle the menu.</p>
<!-- Entry point -->
<script type="module" src="./src/index.js"></script>
</body>
</html>