-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
65 lines (65 loc) · 1.43 KB
/
form.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Registration Form</title>
</head>
<body>
<form action="#">
<div>
<h1>Registration Form</h1>
</div>
<div>
<label>Name: </label>
<input type="text" name="name" >
</div>
<div>
<label>Email: </label>
<input type="email" name="email" >
</div>
<div>
<label>Room Type: </label>
<select>
<option></option>
<option>1BHK</option>
<option>2BHK</option>
<option>3BHK</option>
</select>
</div>
<div>
<label>Arrival Date: </label>
<input type="date" name="date">
</div>
<div>
<label>Number Of Guest: </label>
<input type="number" name="number">
</div>
<div>
<label>Free Pickup? : </label>
<input type="radio" name="yes" >
<label>yes</label>
<input type="radio" name="yes">
<label>no</label>
</div>
<div>
<label>Package Offer :</label>
<input type="checkbox" >
<label>3 days four nights(w/o)</label><br>
<input type="checkbox" >
<label>3 days four nights</label><br>
<input type="checkbox" >
<label>2 days three nights(w/0)</label><br>
<input type="checkbox" >
<label>2 days four nights</label><br>
</div>
<div>
<label>Suggestion: </label>
<input type="textarea" placeholder="Share your experince with us!" rowcell="20" >
</div>
<div>
<button>submit</button>
</div>
</form>
</body>
</html>