-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
71 lines (69 loc) · 2.49 KB
/
Copy pathsignup.html
File metadata and controls
71 lines (69 loc) · 2.49 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Search Bar | Tailwind CSS</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-200">
<nav class="bg-white shadow-lg w-full fixed">
<div class="max-w-7xl mx-auto px-4">
<div class="flex justify-between items-center py-4">
<div class="text-2xl font-bold text-blue-500">MyLogoHere</div>
<!-- Desktop Menu -->
<div class="hidden md:flex space-x-6">
<a href="#" class="text-gray-700 hover:text-blue-500">Home</a>
<a href="#" class="text-gray-700 hover:text-blue-500">About</a>
<a href="#" class="text-gray-700 hover:text-blue-500">Services</a>
<div class="relative group">
<button
class="text-gray-700 hover:text-blue-500 flex items-center"
>
More ▼
</button>
<div
class="hidden group-hover:block rounded-md mt-2 w-40 absolute bg-white shadow-lg"
>
<a href="#" class="block px-4 py-2 hover:bg-blue-500"
>Contact</a
>
<a href="#" class="block px-4 py-2 hover:bg-blue-500">Help</a>
</div>
</div>
<a href="#" class="text-gray-700 hover:text-blue-500">Blog</a>
</div>
<!-- Mobile Menu Button-->
<button id="menu-btn" class="md:hidden text-gray-700 text-xl">
☰
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden">
<a href="#" class="block px-4 py-2 text-gray-700 hover:text-blue-600"
>Home</a
>
<a href="#" class="block px-4 py-2 text-gray-700 hover:text-blue-600"
>About</a
>
<a href="#" class="block px-4 py-2 text-gray-700 hover:text-blue-600"
>Services</a
>
<a href="#" class="block px-4 py-2 text-gray-700 hover:text-blue-600"
>Contact</a
>
<a href="#" class="block px-4 py-2 text-gray-700 hover:text-blue-600"
>Blog</a
>
</div>
</nav>
<script>
document
.getElementById("menu-btn")
.addEventListener("click", function () {
document.getElementById("mobile-menu").classList.toggle("hidden");
});
</script>
</body>
</html>