-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrooms.html
More file actions
108 lines (107 loc) · 5.9 KB
/
rooms.html
File metadata and controls
108 lines (107 loc) · 5.9 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
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
105
106
107
108
<!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">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<title>Select Room</title>
</head>
<body background="b2.jpg">
<section id="hotels" class="text-black text-xl body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-wrap -m-4">
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a href="clarks.html" class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block" src="1.jpg">
</a>
<div class="mt-4">
<a href="clarks.html" class="text-black text-2xl title-font text-lg font-medium">The Clarks</a>
<h3 class="text-indigo-900 text-xs tracking-widest title-font mb-1">Park Avenue</h3>
<p class="mt-1">Rs 1000 per night </p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a href="shooting.html" class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block" src="2.jpg">
</a>
<div class="mt-4">
<a href="shooting.html" class="text-black text-2xl title-font text-lg font-medium">Shooting Stars</a>
<h3 class="text-indigo-900 text-xs tracking-widest title-font mb-1">Mall Avenue</h3>
<p class="mt-1">Rs 1500 per night</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a href="saturn.html" class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block" src="3.jpg">
</a>
<div class="mt-4">
<a href="saturn.html" class="text-black text-2xl title-font text-lg font-medium">Saturn</a>
<h3 class="text-indigo-900 text-xs tracking-widest title-font mb-1">Central Perk</h3>
<p class="mt-1">Rs 1500 per night</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a href ="blows.html" class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block" src="4.jpg">
</a>
<div class="mt-4">
<a href ="blows.html" class="text-black text-2xl title-font text-lg font-medium">The 400 Blows</a>
<h3 class="text-indigo-900 text-xs tracking-widest title-font mb-1">Ring Road</h3>
<p class="mt-1">Rs 2500 per night</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a href ="luffy.html" class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block" src="5.jpg">
</a>
<div class="mt-4">
<a href ="luffy.html" class="text-black text-2xl title-font text-lg font-medium">Luffy's Palace</a>
<h3 class="text-indigo-900 text-xs tracking-widest title-font mb-1">One piece</h3>
<p class="mt-1">15000000000 berries per night </p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a href = "ray.html" class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block" src="6.jpg">
</a>
<div class="mt-4">
<a href = "ray.html" class="text-black text-2xl title-font text-lg font-medium">Ray's Paradise</a>
<h3 class="text-indigo-900 text-xs tracking-widest title-font mb-1">69 Mart street</h3>
<p class="mt-1">Rs 1500 per night</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a href = "sparks.html" class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block" src="7.jpg">
</a>
<div class="mt-4">
<a href = "sparks.html" class="text-black text-2xl title-font text-lg font-medium">Sparks</a>
<h3 class="text-indigo-900 text-xs tracking-widest title-font mb-1">Broad way street</h3>
<p class="mt-1">Rs 1800 per night</p>
</div>
</div>
<div class="lg:w-1/4 md:w-1/2 p-4 w-full">
<a href="taj.html" class="block relative h-48 rounded overflow-hidden">
<img alt="ecommerce" class="object-cover object-center w-full h-full block" src="8.jpg">
</a>
<div class="mt-4">
<a href="taj.html" class="text-black text-2xl title-font text-lg font-medium">Taj Hotel</a>
<h3 class="text-indigo-900 text-xs tracking-widest title-font mb-1">Gomti nagar</h3>
<p class="mt-1">Rs 2000 per night</p>
</div>
</div>
</div>
</div>
<div class="container px-0 py-1 mx-auto"><
<div class="flex flex-col">
<div class="container px-0 py-0 mx-auto">
<div class=class="lg:flex-grow md:w-1/2 lg:pl-8 md:pl-16 flex flex-col md:items-start md:text-left items-center text-center">
<button class="flex-shrink-0 text-white bg-indigo-900 border-0 py-2 px-8 focus:outline-none hover:bg-indigo-600 rounded text-lg mt-10 sm:mt-0">More Hotels </button>
</div>
</div>
</div>
</div>
</section>
</body>
</html>