forked from EkamBhullar/ACM-WEBSITE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (74 loc) · 3.99 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
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
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./src/output.css" rel="stylesheet">
<link rel="stylesheet" href="./src/input.css">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css" rel="stylesheet" />
<title>ACM-Website</title>
</head>
<body>
<nav class="bg-gray-100 sticky w-full z-20 top-0 start-0 ">
<div class="max-w-screen-xl flex flex-wrap items-center justify-between md:justify-around mx-auto p-4">
<a href="/index.html" class="flex items-center space-x-3 rtl:space-x-reverse">
<img src="/assets/images/logo/acm.png" class="h-16" alt="acm-logo">
<!-- <span class="self-center text-2xl font-semibold whitespace-nowrap text-black dark:text-black">ACM</span> -->
</a>
<div class="flex md:order-2 md:hidden space-x-3 md:space-x-0 rtl:space-x-reverse">
<button data-collapse-toggle="navbar-sticky" type="button"
class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
aria-controls="navbar-sticky" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 14">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 1h15M1 7h15M1 13h15" />
</svg>
</button>
</div>
<div class="items-center justify-center hidden w-full md:flex md:w-auto md:order-1" id="navbar-sticky">
<ul
class="flex flex-col p-4 my-2 md:p-0 mt-4 font-medium border border-gray-100 rounded-lg text-center bg-tranparent md:space-x-8 rtl:space-x-reverse md:flex-row md:mt-0 md:border-0 dark:border-gray-700 ">
<li class="py-2">
<a href="#"
class="block py-2 px-3 text-black text-lg rounded hover:bg-gray-400 md:hover:bg-transparent md:p-0 hover:text-blue-500"
aria-current="page">Home</a>
</li>
<li class="py-2">
<a href="#"
class="block py-2 px-3 text-black text-lg rounded hover:bg-gray-400 md:hover:bg-transparent md:p-0 hover:text-blue-500"
aria-current="page">About Us</a>
</li>
<li class="py-2">
<a href="#"
class="block py-2 px-3 text-black text-lg rounded hover:bg-gray-400 md:hover:bg-transparent md:p-0 hover:text-blue-500">Event</a>
</li>
<li class="py-2">
<a href="#"
class="block py-2 px-3 text-black text-lg rounded hover:bg-gray-400 md:hover:bg-transparent md:p-0 hover:text-blue-500 dark:border-gray-700">Our
Team</a>
</li>
<li class="py-2">
<a href="#"
class="block py-2 px-3 text-black text-lg rounded hover:bg-gray-400 md:hover:bg-transparent md:p-0 hover:text-blue-500 dark:border-gray-700">Gallery</a>
</li>
<li class="bg-gradient-to-r from-cyan-500 to-blue-500 px-4 py-2 rounded-full">
<a href="#"
class="block py-2 px-3 text-black text-lg rounded md:hover:bg-transparent md:p-0 hover:text-white dark:border-gray-700 ">Contact</a>
</li>
</ul>
</div>
<!-- <div class="flex justify-center">
<button class="bg-gradient-to-r from-cyan-500 to-blue-500 rounded-lg p-4 md:ml-10 ">
<a href="#"
class="block py-2 px-3 text-white font-medium text-lg md:hover:bg-transparent md:p-0 dark:text-white hover:text-black ">Register
For Event
</a>
</button>
</div> -->
</div>
</nav>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.js"></script>
</body>
</html>