-
Notifications
You must be signed in to change notification settings - Fork 77
/
explore.html
130 lines (86 loc) · 3.17 KB
/
explore.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
<!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>Explore</p>
</section>
<section class="tm-expsection">
<div class="tm-exp1">
<p> Luxorious and Spacious Rooms</p>
<img src="images/luxorius.png">
</div>
</section>
<section class="tm-expsection">
<div class="tm-exp2">
<p> Inhouse Spa</p>
<img src="images/spahouse.png" >
</div>
</section>
<section class="tm-expsection">
<div class="tm-exp1">
<p> Swimming Pools</p>
<img src="images/swimming.png">
</div>
</section>
<section class="tm-expsection">
<div class="tm-exp2">
<p> Indoor Game Room</p>
<img src="images/play.png" >
</div>
</section>
<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>