-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrooms.html
152 lines (104 loc) · 5.4 KB
/
rooms.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Magestic Hotel</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="dist/jquery.scrollUp.js"></script>
<script type="text/javascript" src="dist/demo.js"></script>
</head>
<body>
<header class="tm-header">
<img class="tm-logo" src="images/Majestic_Hotel_hd.png" alt="Majestic Hotel">
<nav class="tm-nav">
<div>
<ul>
<li class="tm-list"><a href="index.html">Home</a></li>
<li class="tm-list"><a href="explore.html">Explore</a></li>
<li class="tm-list"><a href="rooms.html">Rooms</a></li>
<li class="tm-list"><a href="bb.html">Booking</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</header>
<section class="tm-main">
<p>Rooms</p>
</section>
<section class="tm-roomsection">
<div class="tm-room1">
<div class="tm-trans"> <div><p>2 Bed</p><p>Complimentary liquor</p><p>Free Wifi</p> </div>
<div><p>Only for</p><p class="bold">$ 1999.99</p> </div></div>
<img class="tm-roomimage" src="images/luxury.png">
<p class="s">Luxury Suite</p>
</div>
<div class="tm-room1">
<div class="tm-trans"> <div><p>2 Bed</p><p>Luxorious interior</p><p>Free Wifi</p> </div>
<div><p>Only for</p><p class="bold">$ 1599.99</p> </div></div>
<img class="tm-roomimage" src="images/delux.png">
<p>Delux Suite</p>
</div>
<div class="tm-room1">
<div class="tm-trans"> <div><p>2 Bed</p><p>Scenic View</p><p>Free Wifi</p> </div>
<div><p>Only for</p><p class="bold">$ 1299.99</p> </div></div>
<img class="tm-roomimage" src="images/premier.png">
<p>Premier Suite</p>
</div>
</section>
<br/>
<section class="tm-roomsection">
<div class="tm-room1">
<div class="tm-trans"> <div><p>2 Bed</p><p>Free wifi</p><p>Fresh towels</p> </div>
<div><p>Only for</p><p class="bold">$ 999.99</p> </div></div>
<img class="tm-roomimage" src="images/luxuryroom.png">
<p class="s">Luxury Room</p>
</div>
<div class="tm-room1">
<div class="tm-trans"> <div><p>2 Bed</p><p>Fresh towels</p><p>Less costly</p> </div>
<div><p>Only for</p><p class="bold">$ 599.99</p> </div></div>
<img class="tm-roomimage" src="images/deluxroom.png">
<p>Delux Room</p>
</div>
<div class="tm-room1">
<div class="tm-trans"> <div><p>1 Bed</p><p>Fresh towels</p><p>Less costly</p> </div>
<div><p>Only for</p><p class="bold">$ 399.99</p> </div></div>
<img class="tm-roomimage" src="images/premiumroom.png">
<p>Premier Room</p>
</div>
</section>
<br/>
<section class="tm-makeres">
<div class="tm-res">
<div class="tm-resbutton">
<a href="bb.html"> <p>Make Reservation</p></a>
</div>
</div>
</section>
<footer class="tm-footer">
<div class="tm-us">
<p class="bold">About Us</p>
<p>We are a part of chain of luxury hotels
which extends all over the world. We
provide a luxorious stay with various value
added and free services which will make
you visit us over and over again.</p>
</div>
<div class="tm-address">
<p class="bold">Address</p>
<p>415, Park Avenu, Hawai
Phone : (211) 9275693451
Email : [email protected]</p>
</div>
<br/>
<div class="tm-media">
<a href="#"> <img src="images/fb.png"></a>
<a href="#"> <img src="images/G.png"> </a>
<a href="#"> <img src="images/twittr.png"> </a>
<a href="#"> <img src="images/insta.png"> </a>
</div>
<!-- <a href="#"> <img class="tm-up" src="images/up.png"> </a>-->
</footer>
</body>
</html>