-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
177 lines (171 loc) · 5.93 KB
/
index.html
File metadata and controls
177 lines (171 loc) · 5.93 KB
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE>
<html>
<head>
<title>Hotel Management</title>
<link rel="stylesheet" type="text/css" href="index.css"/>
<link rel="stylesheet" type="text/css" href="dhtmlxcalendar.css"/>
<script src="dhtmlxcalendar.js"></script>
<style>
#calendar,
#calendar2,
{
border: 1px solid #909090;
font-family: Tahoma;
font-size: 12px;
}
</style>
<script>
var myCalendar;
function doOnLoad()
{
myCalendar = new dhtmlXCalendarObject(["calendar","calendar2",]);
}
</script
</head>
<body onload="doOnLoad();">
<div id="holder"><a href="https://www.co.in"><img src="images/22.jpg" width="200px" height="100px"/></a>
<div id="header">
<ul>
<li><a href="login.html">Login</a></li>
<li><a href="http://localhost/project/overview.html">Overview</a></li>
<li><a href="http://localhost/project/rest/index.html">Restaurant</a></li>
<li><a href="book.html">Booking</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</div><!--header -->
<br>
<div id="ab">
<div id="check">
<br>
<form action="check.php" method="post">
<div style="position:relative;height:80px;">
<label for="in">Check in:</label>
<input id="calendar" name="in" placeholder="2015-06-02" required="" type="text"> <br><br>
<label for="in">Check out:</label>
<input id="calendar2" name="out" placeholder="2015-06-05" required="" type="text"> <br><br>
</div>
Room Type:
<select name="room">
<option value="A/C">A/C</option>
<option value="Non-A/C">Non-A/C</option>
</select>
<select name="type">
<option value="single">Single</option>
<option value="double">Double</option>
<option value="three">Three</option>
</select>
<br><br>
<input type="submit" name="submit" value="submit" />
<input type="reset" name="reset" value="Reset" />
</form>
</div><!--chack -->
<div id="chat">
<form action="" method="post">
<label for="in">Chat</label>
<input id="chat" name="chat" placeholder="message" required="">
<input type="submit" name="submit" value="submit" />
</form>
</div><!--chat-->
<br>
<br>
<div id="fd">
<form action="feedback.php" method="post">
<label for="in">Feedback</label>
<input id="fd" name="feed" placeholder="Type message" required="">
<input type="submit" name="submit" value="submit" />
</form>
</div><!--fd-->
</div><!--ab-->
<br clear="all"/>
<div id="ac">
<h1>A/C</h1>
<div id="a">
<br><br><br><br>
Single Rs.2000
<br>
<a href="video.html"><input type="submit" value="View"></a>
<a href="book.html"><input type="submit" value="Booking"></a>
</div><!--a-->
<div id="b">
<br><br><br><br>
Double Rs.3000
<br>
<a href="video.html"><input type="submit" value="View"></a>
<a href="book.html"><input type="submit" value="Booking"></a>
</div><!--b-->
<div id="c">
<br><br><br><br>
Three Rs.5000
<br>
<a href="video.html"><input type="submit" value="View"></a>
<a href="book.html"><input type="submit" value="Booking"></a>
</div><!--c-->
</div><!--ac-->
<div id="offer">
<h1>Special Offers</h1>
<div id="a1"><p> </p>
<br><br>
Single Bed<br>
Three Booking<br>For <b>5</b>% discount
</div><!--a1-->
<div id="b1"><p> </p><br>
<br>
Double Bed<br>
Three Booking<br> For <b>10</b>% discount
</div><!--b1-->
<div id="c1"><p> </p><br>
<br>
Three Bed<br>
Three Booking<br> For <b>15</b>% discount
</div><!--c1-->
</div><!--offer-->
<div id="nonac">
<h1>Non-A/C</h1>
<div id="a2">
<p> </p>
Single Rs.1000
<br>
<a href="video.html"><input type="submit" value="View"></a>
<a href="book.html"><input type="submit" value="Booking"></a>
</div><!--a2-->
<div id="b2">
<p> </p>
Double Rs.2000
<br>
<a href="video.html"><input type="submit" value="View"></a>
<a href="book.html"><input type="submit" value="Booking"></a>
</div><!--b2-->
<div id="c2">
<p> </p>
Three Rs.3500
<br>
<a href="video.html"><input type="submit" value="View"></a>
<a href="book.html"><input type="submit" value="Booking"></a>
</div><!--c2-->
</div><!--nonac-->
<div id="rest">
<h1>Special Dishes</h1>
<div id="a3">
</div>
<div id="b3">
<a href="#"></a>
</div>
<div id="c3">
</div>
</div><!--rest-->
</div><!--holder -->
</body>
</html>