-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLandingPage.html
More file actions
44 lines (43 loc) · 1.98 KB
/
LandingPage.html
File metadata and controls
44 lines (43 loc) · 1.98 KB
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>Best Phones in India</title>
</head>
<body>
<nav class="bg-green-400 text-black flex justify-between">
<img src="https://source.unsplash.com/featured/300x203" class="h-12 pt-3 px-3 rounded-2xl" alt="" srcset="">
<span class="text-xl flex items-center font-bold">PhoneDekho</span>
<ul class="px-28 py-4 flex space-x-11 justify end">
<li class="cursor-pointer">Home</li>
<li class="cursor-pointer">About</li>
<li class="cursor-pointer">Catalogue</li>
<li class="cursor-pointer">Contact Us</li>
</ul>
</nav>
<main class="bg-black flex justify-around">
<div class="main py-52 pl-9">
<div class="text-green-600 text-6xl">
BEST PHONES IN THE TOWN
</div>
<p class="text-green-600 w-1/3">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Maxime iure numquam minima quis tenetur alias velit sequi, commodi dolore sint eum quas aut.
</p>
<div class="my-4">
<button class="bg-green-600 px-3 py-2 rounded-2xl hover:text-green-900 hover:bg-white mx-2 hover:border-2 hover:border-green-900">
Buy Now
</button>
<button class="bg-green-600 buttons px-3 py-2 rounded-2xl hover:text-green-900 hover:bg-white mx-2 hover:border-2 hover:border-green-900">
Offers
</button>
</div>
</div>
<div class="flex item-center">
<img src="girl-talk-phone-her-bed-home-84578060.jpg" alt="" srcset="" class="rounded-full">
</div>
</main>
</body>
</html>