-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (35 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grocify- Buy groceries online</title>
<link rel="shortcut icon" href="images/cart.png" type="image/x-icon">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container 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" alt="logo" class="w-40 cursor-pointer" >
<ul class="flex-1 text-center">
<li class="list-none inline-block px-5"><a href="#" class="no-underline text-white px-2">HOME</a></li>
<li class="list-none inline-block px-5"><a href="#" class="no-underline text-white px-2">CONTACT</a></li>
<li class="list-none inline-block px-5" ><a href="#" class="no-underline text-white px-2">ABOUT</a></li>
<li class="list-none inline-block px-5"><a href="#" class="no-underline text-white px-2">MORE</a></li>
</ul>
<img src="images/cart.png" alt="" class="w-10 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>Grocify offers a wide range of groceries, fresh milk, pulses dairy milk, baked stuff and a lot more </p>
<div class="mt-10">
<a href="#" class="bg-yellow-300 rounded-3xl py-3 px-8 font-medium inline-block mr-4 hover:bg-transparent hover:border-yellow-300 hover:text-white duration-300 hover:border border border-transparent">Order Now</a>
<a href="#">Download our App <span class="text-lg inline-block rotate-90">➤</span></a>
</div>
</div>
<img src="images/grocery-image.png" alt="img" class="w-full xl:w-1/2 xl:absolute bottom-0 right-3 ">
</div>
</body>
</html>
<!-- this is a comment -->