-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tailwind CSS</title>
<link rel="icon" href="./images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<!-- bg-[url('./images/image.png')] -->
<div
class="container min-h-screen bg-slate-950 bg-center max-w-full 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 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">About</a>
</li>
<li class="list-none inline-block px-5">
<a href="#" class="no-underline text-white px-2">Features</a>
</li>
<li class="list-none inline-block px-5">
<a href="#" class="no-underline text-white px-2">Contact</a>
</li>
</ul>
<img src="./images/cart.png" class="w-8 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 offer a wide range of products, including fresh products,
meats, dairy, baked goods and non-perishable items.
</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 App<span class="text-lg inline-block rotate-90 pb-1"
>➤</span
></a
</div>
<img
src="./images/grocery-image.png"
class="w-full xl:w-1/2 xl:absolute bottom-0 right-10"
/>
</div>
</div>
</body>
</html>