-
Notifications
You must be signed in to change notification settings - Fork 0
/
phys.html
102 lines (102 loc) · 3.02 KB
/
phys.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
94
95
96
97
98
99
100
101
102
<Doctype=HTML>
<html>
<head>
<title>The Netherlands-Physical Geography</title>
<link rel="stylesheet" href="style.css" />
<style>
.collapsible {
background-color: #777;
color: white;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #555;
}
.collapsible:after {
content: '\002B';
color: white;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
background-color: #f1f1f1;
}
</style>
</head>
<body>
<a class="button" href="index.html">HOME</a> <a class="button" href="history.html">HISTORY</a> <a class="button" href="phys.html">PHYSICAL GEO</a> <a class="button" href="hum.html">HUMAN GEO</a> <a class="button" href="facts.html">FACTS</a>
<h1>Physical Geography</h1>
<button class="collapsible">Land Features</button>
<div class="content">
<p>Frisian Islands</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6f/West_Frisian_Islands_Wikivoyage_Map.png" alt="frisian islands map" width="300px">
<p>Low/High Netherlands</p>
<img src="netherlands.png" alt="netherlnds elevation map" width="300px">
<p>Vaalserberg</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/a/a7/Ac_vaalserberg.JPG" alt="vaalserberg image" width="300px">
<p>Zuidplaspolder</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/8/89/Monument_laagste_punt_van_Nederland.jpg" alt="zuidplaspolder image" width="300px">
<p>Caribbean Colonies</p>
<img src="https://cdn.britannica.com/39/163939-004-B914FA6A.gif" alt="caribbean islands map" width="300px">
</div>
<button class="collapsible">Water Features</button>
<div class="content">
<p>Rhine River</p>
<p>Maas River</p>
<p>Sheldt River</p>
<p>North Sea</p>
<p>Ijsselmeer</p>
<img src="watermap.png" alt="water map" width="300px">
</div>
<button class="collapsible">Climate and Weather</button>
<div class="content">
<!--<p>Climate and Weather</p>-->
<p>Temprate Maritime Climate</p>
<ul>
<li>Summer tempurtures of about 22°C (72°F)</li>
<li>Winter tempurtures of about 2°C (35°F)</li>
</ul>
<p>Weather</p>
<ul>
<li>Average annual rainfall of 70 cm (28 in).</li>
<li>Very unpredictable weather.</li>
</ul>
</div>
<button class="collapsible">Resources</button>
<div class="content">
<p>Oil</p>
<p>Natural Gas</p>
<p>Tulips</p>
<img src="https://dutchreview.com/wp-content/uploads/IMG_1777.jpg" alt="LOTS OF TULIPS!!!" width="300px">
</div>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}
</script>
</body>
</html>