-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPA84.html
More file actions
144 lines (128 loc) · 5.3 KB
/
PA84.html
File metadata and controls
144 lines (128 loc) · 5.3 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
<!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">Things to do</a>
<a href="PA84.html" class="w3-bar-item w3-button w3-border-right w3-mobile w3-theme">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 w3-center">
<h1>Facts about New Zealand</h1>
<audio controls style="width:50%">
<source src="facts_01.ogg" type="audio/ogg">
<source src="facts.mp3" type="audio/mpeg"> Your browser does not support the audio element.
</audio>
</div>
</div>
</div>
<div class="w3-row">
<div class="w3-col w3-mobile">
<div class="w3-margin">
<button onclick="document.getElementById('animals').style.display='block'" style="width: 100%;" class="w3-button">
<img src="WildlifeEdited.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('climate').style.display='block'" style="width: 100%;" class="w3-button">
<img src="climateEdited.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('history').style.display='block'" style="width: 100%;" class="w3-button">
<img src="historyEdited.jpg" alt="" height="auto" width="100%" />
</button>
</div>
</div>
</div>
<!-- Modals -->
<div id="animals" 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('animals').style.display='none'" class="w3-button w3-display-topright">×</span>
<h1>Wild Life</h1>
</div>
<div class="w3-center">
<h3>Kiwi Call</h3>
<audio controls style="width:100%">
<source src=".ogg" type="audio/ogg">
<source src="kiwiCall_mixdown.mp3" type="audio/mpeg"> Your browser does not support the audio element.
</audio>
</div>
<div class="w3-container w3-theme-l1">
<p>
</p>
</div>
</div>
</div>
<div id="climate" 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('climate').style.display='none'" class="w3-button w3-display-topright">×</span>
<h1>
Climate
</h1>
</div>
<div>
<img style="width:100%;" height="auto" src="climate_-_nz_sunshine_hours_1971-2000.jpg" alt="" />
</div>
<div class="w3-container w3-theme-l1">
<p>
</p>
</div>
</div>
</div>
<div id="history" 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('history').style.display='none'" class="w3-button w3-display-topright">×</span>
<h1>
History
</h1>
</div>
<div>
<audio controls style="width:100%">
<source src="history_01.ogg" type="audio/ogg">
<source src="history.mp3" type="audio/mpeg"> Your browser does not support the audio element.
</audio>
</div>
<div class="w3-container w3-theme-l1">
<p>
</p>
</div>
</div>
</div>
</body>