Team_Website/Pages/navbar.html
2025-01-07 19:49:25 -07:00

96 lines
4.3 KiB
HTML

<body>
<!-- Navbar -->
<nav
id="nav-bar"
class="fixed top-0 left-0 w-full bg-gray-100 border-b border-black text-sm z-50"
>
<ul
class="flex flex-wrap justify-center items-center m-0 p-0 list-none"
>
<!-- <li>
<img
src="/Resources/Black Logo-1.png"
id="nav-logo"
alt="Team 1165 Logo"
class="hidden md:inline w-[3.5vw] pr-[30%] align-middle"
/>
</li> -->
<li class="relative group">
<a
href="/index.html"
class="block p-2 md:p-4 text-xs md:text-sm lg:text-base text-black font-extrabold uppercase transition-all duration-200 ease-in-out hover:text-c3153a break-words whitespace-normal"
>
Home
</a>
</li>
<li class="relative group">
<a
href="/Pages/calendar.html"
class="block p-2 md:p-4 text-xs md:text-sm lg:text-base text-black font-extrabold uppercase transition-all duration-200 ease-in-out hover:text-c3153a break-words whitespace-normal"
>
Calendar
</a>
</li>
<li class="relative group">
<a
href="/Pages/sponsors.html"
class="block p-2 md:p-4 text-xs md:text-sm lg:text-base text-black font-extrabold uppercase transition-all duration-200 ease-in-out hover:text-c3153a break-words whitespace-normal"
>
Sponsors
</a>
</li>
<li class="relative group">
<a
href="/Pages/shop.html"
class="block p-2 md:p-4 text-xs md:text-sm lg:text-base text-black font-extrabold uppercase transition-all duration-200 ease-in-out hover:text-c3153a break-words whitespace-normal"
>
Shop
</a>
</li>
<!-- <li class="relative group">
<a
href="/Pages/donate.html"
class="block p-2 md:p-4 text-xs md:text-sm lg:text-base text-black font-extrabold uppercase transition-all duration-200 ease-in-out hover:text-c3153a break-words whitespace-normal"
>
Donate
</a>
<div
class="absolute left-0 top-full hidden group-hover:block bg-white border border-gray-300 text-center text-sm z-50"
>
<a
href="/Pages/gen_donate.html"
class="block px-4 py-2 text-gray-900 text-xs md:text-sm lg:text-lg hover:text-black font-bold"
>General Donation</a
>
<a
href="/Pages/tax_credit_dono.html"
class="block px-4 py-2 text-gray-900 text-xs md:text-sm lg:text-lg hover:text-black font-bold"
>Tax Credit</a
>
</div>
</li> -->
<!-- <li class="relative group">
<a
href="/index.html"
class="block p-2 md:p-4 text-xs md:text-sm lg:text-base text-black font-extrabold uppercase transition-all duration-200 ease-in-out hover:text-c3153a break-words whitespace-normal"
>
Accomplishments
</a>
<div
class="absolute left-0 top-full hidden group-hover:block bg-white border border-gray-300 text-center text-sm z-50"
>
<a
href="/Pages/projects.html"
class="block px-4 py-2 text-gray-900 text-xs md:text-sm lg:text-lg hover:text-black font-bold"
>Projects</a
>
<a
href="/Pages/awards.html"
class="block px-4 py-2 text-gray-900 text-xs md:text-sm lg:text-lg hover:text-black font-bold"
>Awards</a
>
</div>
</li> -->
</ul>
</nav>
</body>