-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.html
104 lines (101 loc) · 3.39 KB
/
tailwind.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="flex justify-between ml-2 mr-2 mt-3">
<h1 class="font-bold text-2xl pl-20">VILLA</h1>
<b
><div class="flex gap-12 pt-2 mr-36 sm:hidden md:flex pl-32 ">
<p class="text-red-600">Home</p>
<p>Properties</p>
<p>Property details</p>
<p>Contact Us</p>
<div class="flex bg-black rounded-full w-40 ">
<img
class="bg-red-500 w-8 pl-2 pr-2 pt-2 pb-2 rounded-full"
src="./images/calendar_4288108.png"
alt=""
width="10px"
/>
<p class="text-white w-32 pl-2 pt-1 pb-1 rounded-2xl ">
Schedule a visit
</p>
</div>
</div>
</b>
</div>
<br />
<hr />
<br />
<p class="text-red-500 ml-20 font-bold">|BEST DEAL</p>
<div class="flex justify-between">
<h1 class="ml-20 text-4xl font-bold">
Find Your Best Deal <br />
Right Now!
</h1>
<div class="flex gap-4 mr-20 pr-40 pt-20">
<h3 class="bg-orange-600 text-white h-9 w-24 pl-2 pt-1 rounded">
Apartment
</h3>
<h3 class="bg-black text-white h-9 w-24 pl-2 pt-1 rounded">Villa House</h3>
<h3 class="bg-black text-white h-9 w-24 pl-2 pt-1 pl-3 rounded">
Penthouse
</h3>
</div>
</div>
<br /><br />
<!-- box -->
<div class="flex ml-20 mr-40 gap-20">
<div class="shadow-[0_3px_10px_rgb(0,0,0,0.2)] w-64 pl-2 pr-2 rounded">
<p class="pl-3 pt-5">Total Flat Space : 182m2</p>
<br />
<hr />
<p class="pl-4 pt-5">Floor number : 26th</p>
<br />
<hr />
<p class="pl-5 pt-5">No of rooms : 4</p>
<br />
<hr />
<p class="pl-3 pt-5">Parking Available : Yes</p>
<br />
<hr />
<p class="pl-3 pt-5 pb-3">Payment Process : Bank</p>
</div>
<!-- img -->
<div class="h-20 sm: w-42">
<img src="./images/deal-01.jpg " alt="" width="500px" />
</div>
<!-- info -->
<div class="">
<p class="font-bold">Extra Info About Property</p>
<br />
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing. <br />
Voluptas enim perspiciatis amet voluptatum? Quaerat voluptatum <br />
quae aperiam veritatis praesentium neque porro voluptate
<br />cupiditate quas dicta expedita aspernatur, amet,<br />
molestias ex odio tempora? Et vitae fugiat dolores,<br />
suscipit voluptate cum, non exercitationem pariatur laudantium
delectus <br />fugit dolore odit nobis, libero expedita!
</p>
<br />
<div class="flex bg-black rounded-full w-40">
<img
class="bg-red-500 w-8 pl-2 pr-2 pt-2 pb-2 rounded-full"
src="./images/calendar_4288108.png"
alt=""
width="10px"
/>
<p class="text-white w-32 pl-2 pt-1 pb-1 rounded-2xl">
Schedule a visit
</p>
</div>
</div>
</div>
</body>
</html>