-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tailwind CSS - Demo</title>
<link rel="stylesheet" href="./style.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="min-h-screen bg-[url('/images/Image.png')] bg-center bg-cover px-28 py-5 relative">
<nav class="flex items-center">
<img src="./images/logo.png" class="w-40 cursor-pointer">
<ul class="flex-1 text-center">
<li class="list-none px-5 inline-block"><a href="#" class="text-white px-2" >Home</a></li>
<li class="list-none px-5 inline-block"><a href="#" class="text-white px-2">About</a></li>
<li class="list-none px-5 inline-block"><a href="#" class="text-white px-2">Features</a></li>
<li class="list-none px-5 inline-block"><a href="#" class="text-white px-2">Contacts</a></li>
</ul>
<img src="./images/cart.png" class="w-4 cursor-pointer">
</nav>
<div class="text-white mt-48 max-w-xl">
<h1 class="text-6xl font-semibold leading-normal">Groceries <br>Delivery in <span class="font-light">15 mins</span> </h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptas atque cumque consectetur.</p>
<div class="mt-10">
<a href="#" class="bg-yellow-300 rounded-3xl py-3 px-8 font-medium mr-4 hover:bg-transparent hover:border hover:border-yellow-300 hover:text-white duration-300 border border-transparent">Order Now</a>
<a href="#">Download App <span class="text-lg inline-block rotate-180">↑</span></a>
</div>
</div>
<img src="./images/grocery-image.png" class="w-full xl:w-1/3 xl:absolute bottom-0 right-20">
</div>
</body>
</html>