-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPA83.html
More file actions
128 lines (113 loc) · 4.68 KB
/
PA83.html
File metadata and controls
128 lines (113 loc) · 4.68 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
<!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>
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 w3-theme">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">Travel</a>
</div>
<div class="w3-row">
<div class="w3-col w3-mobile">
<div class="w3-margin">
<button onclick="document.getElementById('parks').style.display='block'" style="width: 100%;" class="w3-button">
<img src="NationalParkEdited.jpg" alt="" height="auto" width="100%" />
</button>
</div>
</div>
</div>
<div class="w3-row">
<div class="w3-col w3-mobile">
<div class="w3-margin">
<button onclick="document.getElementById('movie').style.display='block'" style="width: 100%;" class="w3-button">
<img src="MovieSetsEdited.jpg" alt="" height="auto" width="100%" />
</button>
</div>
</div>
</div>
<div class="w3-row">
<div class="w3-col w3-mobile">
<div class="w3-margin">
<button onclick="document.getElementById('flights').style.display='block'" style="width: 100%;" class="w3-button">
<img src="ScenicFlightsEdited.jpg" alt="" height="auto" width="100%" />
</button>
</div>
</div>
</div>
<!-- Modals -->
<div id="parks" 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('parks').style.display='none'" class="w3-button w3-display-topright">×</span>
<h1>National Parks</h1>
</div>
<div>
<iframe src="https://www.youtube.com/embed/u-L4roPK8-s" height="500px" width="100%" frameborder="0px">
</iframe>
</div>
<div class="w3-container w3-theme-l1">
<p>
</p>
</div>
</div>
</div>
<div id="movie" 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('movie').style.display='none'" class="w3-button w3-display-topright">×</span>
<h1>
Movie Sets
</h1>
</div>
<div>
<iframe src="https://www.youtube.com/embed/tPUqFw1dXaQ" height="500px" width="100%" frameborder="0px">
</iframe>
</div>
<div class="w3-container w3-theme-l1">
<p>
</p>
</div>
</div>
</div>
<div id="flights" 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('flights').style.display='none'" class="w3-button w3-display-topright">×</span>
<h1>
Scenic Flights
</h1>
</div>
<div>
<iframe src="https://www.youtube.com/embed/f4FZ0exhWkc" height="500px" width="100%" frameborder="0px">
</iframe>
</div>
<div class="w3-container w3-theme-l1">
<p>
</p>
</div>
</div>
</div>
</body>