-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (62 loc) · 1.95 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
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tailwind Project</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="min-h-screen bg-zinc-800 text-white px-28 py-6 relative">
<nav class="flex items-center px-5">
<img
class="w-16 h-16 cursor-pointer"
src="./img/pngwing.com.png"
alt="logo"
/>
<ul class="flex-1 text-center">
<li class="list-none inline-block px-5">
<a class="px-2" href="#">Home</a>
</li>
<li class="list-none inline-block px-5">
<a class="px-2" href="#">About</a>
</li>
<li class="list-none inline-block px-5">
<a class="px-2" href="#">Contact</a>
</li>
</ul>
<button
class="rounded-3xl px-4 py-3 bg-blue-400 hover:bg-blue-600 text-white"
>
Log In
</button>
</nav>
<div class="mt-48">
<img
class="w-full xl:w-1/2 xl:absolute bottom-0 right-2"
src="./img/3d-camera-isolated-transparent-background_191095-16434-removebg-preview.png"
/>
<h1 class="text-6xl font-bold leading-normal">
Camera shop<br />
Delivery in 5 minut
</h1>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Repellat
eveniet reprehenderit temporibus
</p>
<div class="mt-10">
<a
href="#"
class="bg-yellow-300 rounded-3xl py-3 px-8 font-medium text-white mr-4 hover:bg-sky-700 hover:text-black"
>Order Now</a
>
<a
href="#"
class="bg-gray-400 rounded-3xl py-3 px-8 font-medium text-black hover:bg-black hover:text-white"
>Download</a
>
</div>
</div>
</div>
</body>
</html>