-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (73 loc) · 2.7 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
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body class="bg-slate-900">
<div class="flex">
<div class="h-72 w-72 bg-red-600 mx-6 my-6 rounded-xl overflow-hidden">
<div class="">
<img src="background.png.jpg" alt="" />
</div>
<div class="text-center text-white font-medium">
<h1 class="font-bold text-xl mt-2">This is Background</h1>
<p class="text-sm mt-2">Tailwindcss</p>
</div>
<div class="text-center mt-2">
<button
class="bg-black rounded-xl text-white px-5 py-2 text-base hover:bg-purple-800 text-white"
>
Learn More
</button>
</div>
</div>
<div class="h-72 w-72 bg-red-600 mx-6 my-6 rounded-xl overflow-hidden">
<div class="">
<img src="background.png.jpg" alt="" />
</div>
<div class="text-center text-white font-medium">
<h1 class="font-bold text-xl mt-2">This is Background</h1>
<p class="text-sm mt-2">Tailwindcss</p>
</div>
<div class="text-center mt-2">
<button
class="bg-black rounded-xl text-white px-5 py-2 text-base hover:bg-purple-800 text-white"
>
Learn More
</button>
</div>
</div>
</div>
<div class="flex space-x-3 mx-6 items-center">
<div class="bg-fuchsia-700 h-52 w-52 text-center">1</div>
<div class="bg-fuchsia-700 h-52 w-52 text-center">2</div>
<div class="bg-fuchsia-700 h-52 w-52 text-center">3</div>
</div>
<div class="mx-8 py-8 flex">
<div class="bg-green-600 h-96 w-96 rounded-lg overflow-hidden px-8">
<img class="mt-4 rounded-sm" src="background.png.jpg" alt="" />
<h2 class="text-center font-bold text-white text-2xl mt-4 uppercase">
Lorem ipsum dolor sit.
</h2>
<p class="text-center text-white">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Et, sit
placeat. Aperiam expedita, quod alias consequatur minus, vero hic
architecto commodi laborum quos veritatis sapiente! Consequuntur ex
tempore
</p>
</div>
<div class="mx-8">
<a href="https://www.google.com/">
<button
class="bg-red-600 px-6 py-3 rounded-md text- text-white text-base font-medium hover:bg-purple-800 uppercase"
>
Buy Now
</button>
</a>
</div>
</div>
</body>
</html>