-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraveltask.html
58 lines (44 loc) · 1.71 KB
/
traveltask.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Company Form</title>
</head>
<body>
<h1>Plan Your Dream Vacation</h1>
<form id="travelForm">
<label for="destination">Destination:</label>
<input type="text" id="destination" name="destination" required><br>
<label for="board">Board Type:</label>
<select id="board" name="board" required>
<option value="room-only">Room Only</option>
<option value="bed-and-breakfast">Bed and Breakfast</option>
<option value="half-board">Half Board</option>
<option value="full-board">Full Board</option>
<option value="all-inclusive">All-Inclusive</option>
</select><br>
<p>Select additional options:</p>
<input type="checkbox" id="excursions" name="options" value="excursions">
<label for="excursions">Excursions</label><br>
<input type="checkbox" id="spa" name="options" value="spa">
<label for="spa">Spa</label><br>
<input type="checkbox" id="fitness" name="options" value="fitness">
<label for="fitness">Fitness Center</label><br>
<input type="checkbox" id="parasailing" name="options" value="parasailing">
<label for="parasaiing">Parasailing</label><br>
<input type="submit" value="Submit">
</form>
<!--Data list-->
<h1>Choose a fruit from the list:</h1>
<input list="fruits" name="selectedFruit" id="selectedFruit" placeholder="Start typing...">
<datalist id="fruits">
<option value="Apple">
<option value="Banana">
<option value="Orange">
<option value="Grapes">
<option value="Mango">
<!-- Add more fruit options as needed. -->
</datalist>
</body>
</html>