-
Notifications
You must be signed in to change notification settings - Fork 0
/
index08.html
47 lines (43 loc) · 1.61 KB
/
index08.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
<!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>
</head>
<body>
<div class="container">
<div class="title">ATLAS OF ID 9/13</div>
<img src="./img/09kl.png"style="width:96%;">
<div class="bottom-right"><a href="index07.html">BACK</a></div>
<div class="o"><a href="index09.html">o</a></div>
<div class="top-right">
Research at Brussels university found<br/ >that 2/3 of Flemisch people<br/ >never heard of AI and if they did<br/ >they didn't know what is was.
<button onclick="myFunction()">Are you for real!</button>
<p id="demo"></p>
<script>
function myFunction() {
let text;
let favDrink = prompt("Flemisch people are backward!", "Yes");
switch(favDrink) {
case "Yes":
text = "Excellent choice. Being backward is good for the soul.";
break;
case "No":
text = "Not?";
break;
case "Maybe":
text = "Really? Are you sure you're not?";
break;
default:
text = "I've never heard of that one.";
}
document.getElementById("demo").innerHTML = text;
}
</script>
</div>
</div>
</body>
</html>