-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPA85.html
More file actions
163 lines (139 loc) · 6.49 KB
/
PA85.html
File metadata and controls
163 lines (139 loc) · 6.49 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PA8</title>
<link rel="stylesheet" href="w3.css" />
<link rel="stylesheet" href="PA8-theme.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="metro.css">
<style>
.not-allowed {cursor: not-allowed;}
video {
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
/* background: url('newZealand.jpg') no-repeat; */
/* background-size:cover; */
}
</style>
</head>
<body class="w3-theme">
<div class="w3-bar w3-xxlarge" style="color: #004331; background-color: #00c08d;">
<a href="PA8.html" class="w3-bar-item w3-button w3-border-right w3-mobile">
<i class="material-icons">home</i>
</a>
<a href="PA82.html" class="w3-bar-item w3-button w3-border-right w3-mobile">Things to see</a>
<a href="PA83.html" class="w3-bar-item w3-button w3-border-right w3-mobile">Things to do</a>
<a href="PA84.html" class="w3-bar-item w3-button w3-border-right w3-mobile">Facts</a>
<a href="PA85.html" class="w3-bar-item w3-button w3-border-right w3-mobile w3-theme">Travel</a>
</div>
<div class="w3-row-padding w3-margin-right" style="padding-left: 0;">
<div class="w3-third w3-mobile">
<div style="width:100%" class="w3-metro-dark-green w3-button w3-margin w3-card-4 w3-center">
<h1>Travel option 1</h1>
<h2>Movie set tour</h2>
<h3>15 days</h3>
<p>Visit famous filming sites in New Zealand, such as middle earth.</p>
<p>By <i>Travel Agency</i></p>
<h1>$5935</h1>
<p>(Air fair included)</p>
</div>
</div>
<div class="w3-third w3-mobile">
<div style="width:100%" class="w3-metro-dark-green w3-button w3-margin w3-card-4">
<h1>Travel Option 2</h1>
<h2>Explorer multi sport adventure</h2>
<h3>14 days</h3>
<p>Go sailing, caving, rafting, and skiing throughout New Zealand</p>
<p>By <i>Travel Agency</i></p>
<h1>$3025</h1>
<p>(Air fair included)</p>
</div>
</div>
<div class="w3-third w3-mobile">
<div style="width:100%" class="w3-metro-dark-green w3-button w3-margin w3-card-4">
<h1>Travel Option 3</h1>
<h2>North and South Island Drive</h2>
<h3>18 days</h3>
<p>Includes 17-night hotel and car rental, as well as visitors guide.</p>
<p>By <i>Travel Agency</i></p>
<h1>$1758</h1>
<p>(Air fair included)</p>
</div>
</div>
</div>
<div class="w3-row-padding w3-margin">
<div class="w3-mobile w3-center">
<div class="w3-third w3-mobile">
<!-- Empty image for formating -->
<img src="" alt="">
</div>
<div class="w3-third w3-mobile">
<img style="width:100%" src="Flag_of_New_Zealand.png" alt="New Zealand flag">
</div>
</div>
</div>
<div class="w3-row">
<div class="w3-col w3-mobile">
<div class="w3-third">
<!-- Empty image for formating -->
<img src="" alt="">
</div>
<div class="w3-third w3-center w3-theme-d4 w3-button w3-card-4">
<button onclick="document.getElementById('survey').style.display='block'" style="width: 100%;" class="w3-button">
<h1>Complete Our Survey</h1>
</button>
</div>
</div>
</div>
<!-- Modals -->
<div id="survey" class="w3-modal">
<div class="w3-modal-content w3-card-4 w3-theme-l4">
<div class="w3-container w3-theme-l1">
<span onclick="document.getElementById('survey').style.display='none'" class="w3-button w3-display-topright">×</span>
<h1>Survey</h1>
</div>
<div class="w3-center">
<form style="font-size: 150%" action="mailto:survey@NewZealand.country" method="post" class="w3-container">
<fieldset>
<label>Name</label>
<input class="w3-input w3-border w3-light-grey" type="text" name="name">
<p>Do you like New Zealand?</p>
<input type="radio" class="w3-radio" name="likeNZ" value="yes" checked>
<label for="yes">Yes</label>
<input type="radio" class="w3-radio" name="likeNZ" value="no">
<label for="no">No</label>
<br>
<p>Do you like this website?</p>
<input type="radio" class="w3-radio" name="likeWeb" value="yes" checked>
<label for="yes">Yes</label>
<div class="tooltip">
<input type="radio" class="w3-radio not-allowed" name="likeWeb" value="no" disabled>
<span class="tooltiptext">Disabled :)</span>
</div>
<label for="no">No</label>
<br>
<p>Do you like this survey?</p>
<select class="w3-select" name="option">
<option value="" disabled selected>Choose your option</option>
<option value="love">This is the finest survey ever to grace the web.</option>
<option value="meh">The jury is out</option>
<option value="hate it" style="text-transform:uppercase;">I don't know what !@#$ made this survey, but when i find them...</option>
</select>
</fieldset>
<fieldset>
<input class="w3-btn w3-theme-d1" type="submit" value="Submit">
<input class="w3-btn w3-theme-d1" type="reset" value="Reset">
</fieldset>
</form>
</div>
<div class="w3-container w3-theme-l1">
<p>Disclaimer: We never claimed the survey was serious.</p>
</div>
</div>
</div>
</body>