-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBai16.html
41 lines (41 loc) · 1.35 KB
/
Bai16.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
<!DOCTYPE html>
<html>
<head>
<title>Bai 16</title>
</head>
<body>
<h1><B>Travel reservation form</B></h1>
<h2><B>*denotes mandotory</B></h2>
<form>
<p>Full name*:<br />
<input type="text" value placeholder="FirstName LastName"><br />
Email address*:<br />
<input type="text" value placeholder="EMAIL ADDRESS"><br />
Select Tour Package*:<br />
<td>
<select>
<option value="0">3 ngày</option>
<option value="1">2 ngày</option>
<option value="2">1 ngày</option>
</select>
</td><br />
Arrival date*:<br />
<input type="text" value placeholder="m/d/y"><br />
Number of persons*:<br>
<input type="text" value placeholder="UNKNOWN_TYPE"><br />
What would you want to avail?*<br />
<form>
<input type="checkbox" name="Tandung" value="Boarding" >Boarding<br />
<input type="checkbox" name="Tandung" value="Fooding" >Fooding<br />
<input type="checkbox" name="Tandung" value="Sight seeing" >Sight seeing
Discout Coupon code:<br />
<input type="text" value placeholder="UNKNOWN_TYPE"><br />
Terms and conditions*<br />
<input name="dieukhoan" type="radio" value="I agree" >I agree
<input name="dieukhoan" type="radio" value="I disagree" >I disagree<br />
<input type="submit" value="Complete reservation" />
</form>
</p>
</form>
</body>
</html>