-
Notifications
You must be signed in to change notification settings - Fork 0
/
dining_booking.html
46 lines (46 loc) · 1.45 KB
/
dining_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
<html>
<head>
<title> Dine Booking</title>
</head>
<body>
<form action="login.html">
<h1> Dine Booking</h1>
<label>Visitor Name: </label>
<input type="text" maxlength="20" autofocus/>
<br> <br>
<label> Number of members:</label>
<input type="number" maxlength="2">
<br> <br>
<label> Contact No:</label>
<input type="number">
<br> <br>
<label> Email:</label>
<input type="email">
<br> <br>
<label> Type of Food:</label>
<input type="checkbox" name="food" checked>South Indian
<input type="checkbox" name="food" >North Indian
<input type="checkbox" name="food" >Chinese
<input type="checkbox" name="food" >Western
<br> <br>
<label> Room Status: </label>
<input type="radio" name="status" checked="true" >AC
<input type="radio" name="status" >Non-AC
<br> <br>
<label> Venue Preference: </label>
<select>
<option>--SELECT--</option>
<option> Arena </option>
<option> Fiesta </option>
<option> Vista </option>
<option> Mythri </option>
<option> Magna </option>
<option> Oasis </option>
<option> Amoeba </option>
</select>
<br> <br>
<input type="submit" value="Book">
<input type="reset" value="Reset">
</form>
</body>
</html>