-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathbb.html
131 lines (96 loc) · 4.26 KB
/
bb.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Magestic Hotel</title>
<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/pickmeup.min.js"></script>
<script type="text/javascript" src="dist/handleCounter.js"></script>
<link rel="stylesheet" type="text/css" href="css/pickmeup.css">
<link rel="stylesheet" type="text/css" href="css/handle-counter.min.css">
<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="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>Booking</p>
</section>
<section class="tm-booking">
<form>
<div class="tm-form1">
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="E-mail">
<label for="rooms" id="inlinelable">Rooms</label>
<select name="Rooms" id="rooms">
<option value="luxurys">Luxury Suite</option>
<option value="deluxs">Delux Suite</option>
<option value="premiers">Premier Suite</option>
<option value="Luxuryr">Luxury Room</option>
<option value="deluxs">Delux Room</option>
<option value="premierr">Premier Room</option>
</select>
<div class="tm-num1" id="handleCounter1">
<label for="number1" >Number of Rooms</label><br/>
<button type="button" class="counter-minus btn btn-primary">- </button>
<input type="text" name="number1" id="number1" value="1">
<button type="button" class="counter-plus btn btn-primary">+ </button>
</div>
<div class="tm-num2" id="handleCounter2">
<label for="number2">Number of Guests</label><br/>
<button type="button" class="counter-minus btn btn-primary">-</button>
<input type="text" name="number2" id="number2" value="1">
<button type="button" class="counter-plus btn btn-primary">+</button>
</div>
</div>
<div class="vertical-line"> </div>
<div class="tm-form2">
<div class="tm-cl">
<label for="date1" class="arrival">Visiting Dates from Arrival to Departure</label>
<input type="text" name="date1" class="range" readonly="readonly">
<input type="submit" id="sub" value="Proceed">
</div>
</div>
</form>
</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 : majestic@info.com</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>