-
Notifications
You must be signed in to change notification settings - Fork 0
/
booking.html
63 lines (56 loc) · 2.12 KB
/
booking.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" type="text/css" href="Font/css/fontawesome.min.css">
<link rel="stylesheet" type="text/css" href="Font/css/all.min.css">
<link rel="stylesheet" type="text/css" href="booking.css">
</head>
<body>
<nav>
<div id="login"><a href="index.html">Logout</a></div>
<ul>
<li><a href="Home1.html">Home</a></li>
<li><a href="Home1.html #about">About</a></li>
<li><a href="Home1.html #gallary">Gallery</a></li>
<li><a href="Room1.html">Room</a></li>
<li><a href="Contact1.html">Contact</a></li>
</ul>
</nav>
<div class="wrapper">
<div class="hotel">
<h2>Make A Reservation</h2>
<form id="bookForm" action="book1.html">
<ul id="info" >
<li>Name<input type="text" name="Name" required placeholder="Full Name" class="inputClass1"></li>
<li>Check-In<input type="Date" name="chkinDate" required id="dateIn" class="inputClass2"></li>
<li>Check-Out<input type="Date" name="chkinDate" required id="dateOut" class="inputClass3"></li>
<li>Rooms<select class="inputClass4">
<option disabled>Select Rooms</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select></li>
<li>Rooms Type<select class="inputClass5">
<option disabled> Select Rooms Type </option>
<option value="1">Diamond Suite</option>
<option value="2">Gold Suite</option>
<option value="3">Silver Suite</option></select></li>
</ul>
<input type="submit" value="BOOK NOW" id="booknow">
</form>
</div>
<div class="hotel1">
<div class="Let">
<h1>Grand Beach Hotel</h1>
<p>Each of our guest rooms feature a private bath,wifi,cable televison and also other more specialist services.We are very glad to serve you.<br><br>
<span class="span2">Contact : <i class="fa-solid fa-phone"></i>+1 305-538-8666 or
<i class="fa-solid fa-phone"></i>+877-538-8666 for More information.
It's toll free.</span></p>
</div>
</div>
</div>
</body>
</html>