-
Notifications
You must be signed in to change notification settings - Fork 0
/
index03.html
44 lines (41 loc) · 1.4 KB
/
index03.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
<!doctype html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<!--eerst style sheet van de fonts inladen -->
<link rel="stylesheet" href="https://use.typekit.net/ilr2sfa.css">
<link rel="stylesheet" href="./css/style.css">
<title>ATLAS OF ID</title>
<body>
<div class="container">
<div class="title">ATLAS OF ID 4/13</div>
<img src="./img/Scene01_4K_13.07.2022_14-16-49.png"style="width:96%;">
<div class="bottom-right"><a href="index02.html">BACK</a></div>
<div class="o"><a href="index04.html">o</a></div>
<div class="top-right">There is not a thing on earth,<br/ > created or born,<br /> that does not reveal its inward form<br/ > also outwardly.
<button onclick="myFunction()">Deep</button>
<p id="demo"></p>
<script>
function myFunction() {
let text;
let favDrink = prompt("Do you want to contribute to the future?", "Yes");
switch(favDrink) {
case "Yes":
text = "Excellent choice. Participation is good for the soul.";
break;
case "No":
text = "Nah!";
break;
case "Maybe":
text = "Really? Are you sure you don't know?";
break;
default:
text = "I've never heard of that one.";
}
document.getElementById("demo").innerHTML = text;
}
</script>
</div>
</div>
</body>
</html>