forked from cse442-at-ub/s24semesterproject-interns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.html
93 lines (85 loc) · 4.72 KB
/
local.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tourist</title>
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<header>
<div class="container">
<h1>Local</h1>
</div>
</header>
<main>
<div class="container">
<form method="post" action="google.html"> <!-- Modified form tag -->
<p class="question">
<label>Do you like history?</label>
</p>
<ul class="choices">
<li><input name="history_choice" type="radio" value="Nope" />Nope</li>
<li><input name="history_choice" type="radio" value="A little bit" />A little bit</li>
<li><input name="history_choice" type="radio" value="I like it" />I like it</li>
<li><input name="history_choice" type="radio" value="I love it!" />I love it!</li>
</ul>
</form>
<form method="post" action="google.html"> <!-- Second form for the second question -->
<p>
<label>What type of cuisine do you like?</label>
</p>
<ul class="choices">
<li><input name="cuisine_choice" type="checkbox" value="Mexican Cuisine" />Mexican Cuisine</li>
<li><input name="cuisine_choice" type="checkbox" value="Chinese Cuisine" />Chinese Cuisine</li>
<li><input name="cuisine_choice" type="checkbox" value="Japanese Cuisine" />Japanese Cuisine</li>
<li><input name="cuisine_choice" type="checkbox" value="American Cuisine" />American Cuisine</li>
<li><input name="cuisine_choice" type="checkbox" value="Indian Cuisine" />Indian Cuisine</li>
<li><input name="cuisine_choice" type="checkbox" value="Italian Cuisine" />Italian Cuisine</li>
<li><input name="cuisine_choice" type="checkbox" value="Thai Cuisine" />Thai Cuisine</li>
<li><input name="cuisine_choice" type="checkbox" value="French Cuisine" />French Cuisine</li>
</ul>
</form>
<form method="post" action="google.html"> <!-- Second form for the second question -->
<p>
<label>How long do you plan to spend on your journey?</label>
</p>
<ul class="choices">
<li><input name="journey_choice" type="radio" value="Weekend getaway" />Weekend getaway</li>
<li><input name="journey_choice" type="radio" value="One week" />One week</li>
<li><input name="journey_choice" type="radio" value="Two week" />Two week</li>
<li><input name="journey_choice" type="radio" value="Extended vacation" />Extended vacation</li>
</ul>
</form>
<form method="post" action="google.html"> <!-- Second form for the second question -->
<p>
<label>Where would you prefer to travel?</label>
</p>
<ul class="choices">
<li><input name="travel_choice" type="radio" value="Beach destination" />Beach destination</li>
<li><input name="travel_choice" type="radio" value="Mountain retreat" />Mountain retreat</li>
<li><input name="travel_choice" type="radio" value="Urban exploration" />Urban exploration</li>
<li><input name="travel_choice" type="radio" value="Cultural immersion" />Cultural immersion</li>
</ul>
</form>
<form method="post" action="google.html"> <!-- Second form for the second question -->
<p>
<label>How important is trying local cuisine to you?</label>
</p>
<ul class="choices">
<li><input name="localcuisine_choice" type="radio" value="Not important" />Not important</li>
<li><input name="localcuisine_choice" type="radio" value="Somewhat important" />Somewhat important</li>
<li><input name="localcuisine_choice" type="radio" value="Very important" />Very important</li>
<li><input name="localcuisine_choice" type="radio" value="Its the point of my trip!" />Its the point of my trip!</li>
</ul>
<input type="submit" value="Submit" />
</form>
</div>
</main>
<footer>
<div class="container">
Interns ©2024, Quiz
</div>
</footer>
</body>
</html>