-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrooms.html
113 lines (113 loc) · 3.39 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
<!DOCTYPE html>
<!-- Website template by freewebsitetemplates.com -->
<html>
<head>
<meta charset="UTF-8">
<title>Rooms - Travlr Getaways Website Template</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<div id="background">
<div id="page">
<div id="header">
<div id="logo">
<a href="index.html"><img src="images/logo.png" alt="LOGO" height="100" width="200"></a>
</div>
<div id="navigation">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="travel.html">Travel</a>
</li>
<li class="selected">
<a href="rooms.html">Rooms</a>
</li>
<li>
<a href="meals.html">Meals</a>
</li>
<li>
<a href="news.html">News</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
<div id="contents">
<div class="box">
<div>
<div class="body">
<h1>Rooms</h1>
<ul id="rooms">
<li>
<a href="rooms.html"><img src="images/first-class.jpg" alt="Img"></a>
<h2><a href="rooms.html">First Class Room</a></h2>
<p>
Cras dui sapien, feugiat vitae tristique ut, lobortis tempor orci. Donec pulvinar sagittis metus ut tristique. Pellentes que habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas idios.
</p>
<span class="rate">Rate: 220 / Day</span>
</li>
<li>
<a href="rooms.html"><img src="images/deluxe.jpg" alt="Img"></a>
<h2><a href="rooms.html">Deluxe Room</a></h2>
<p>
Sed et augue lorem. In sit amet placerat arcu. Mauris volutpat ipsum ac justo mollis vel vestibulum orci gravida. Vestibulum sit amet porttitor odio. Nulla facilisi. Fusce at pretium felis.
</p>
<span class="rate">Rate: 150 / Day</span>
</li>
<li>
<a href="rooms.html"><img src="images/suite.jpg" alt="Img"></a>
<h2><a href="rooms.html">Suite Room</a></h2>
<p>
Sed et augue lorem. In sit amet placerat arcu. Mauris volutpat ipsum ac justo mollis vel vestibulum orci gravida. Vestibulum sit amet porttitor odio. Nulla facilisi. Fusce at pretium felis.
</p>
<span class="rate">Rate: 180 / Day</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div>
<ul class="navigation">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="travel.html">Travele</a>
</li>
<li class="active">
<a href="rooms.html">Rooms</a>
</li>
<li>
<a href="meals.html">Meals</a>
</li>
<li>
<a href="news.html">News</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
<div id="connect">
<a href="http://pinterest.com/fwtemplates/" target="_blank" class="pinterest"></a> <a href="http://freewebsitetemplates.com/go/facebook/" target="_blank" class="facebook"></a> <a href="http://freewebsitetemplates.com/go/twitter/" target="_blank" class="twitter"></a> <a href="http://freewebsitetemplates.com/go/googleplus/" target="_blank" class="googleplus"></a>
</div>
</div>
<p>
© 2023 by Travlr Getaways. All Rights Reserved
</p>
</div>
</div>
</body>
</html>