forked from Jeffreyvanderlei/Adresboek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (29 loc) · 811 Bytes
/
index.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>
<head>
<title>Jeffrey's adresboek</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="stijlAdresboek.css">
</head>
<body>
<h1>Jeffrey's adresboek</h1>
<hr>
<div id="uitvoer"></div>
<!-- OEFENING GEGEVENS TOEVOEGEN KNOP -->
<button onclick="myFunction()">Contact toevoegen</button>
<p id="demo"></p>
<script src="adresboek.js"></script>
<script>
function myFunction() {
var txt;
var person = prompt("Please enter your name:", "Mijn naam");
if (person == null || person == "") {
txt = "User cancelled the prompt.";
} else {
txt = "Hello " + person + "! How are you today?";
}
document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>