-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.tailwindcss.com"></script>
<title>Document</title>
</head>
<body>
<nav class="w-full px-[40px] py-[20px] flex justify-between items-center bg-black/10">
<h1>LOGO</h1>
<ul class="flex flex-row items-center gap-[20px]">
<li class="hover:font-bold hover:underline hover:underline-offset-[8px] cursor-pointer">Home</li>
<li class="hover:font-bold hover:underline hover:underline-offset-[8px] cursor-pointer">About</li>
<li class="font-bold underline underline-offset-[8px] cursor-pointer">Shop</li>
<li class="hover:font-bold hover:underline hover:underline-offset-[8px] cursor-pointer">Cart</li>
</ul>
</nav>
<main>
<div class="products">
<img src="" alt="image">
</div>
</main>
<script src="index.js"></script>
</body>
</html>