-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
27 lines (27 loc) · 856 Bytes
/
index.php
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
<html>
<head>
<title>Vogel memory</title>
<script src="script.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body onload="startMemo()">
<div id="options">
<button onclick="restart()">Herstarten</button><br>
Aantal vakjes:
<select id="av" onchange="restart()">
<option value="16">16</option>
<option value="20">20</option>
<option value="24">24</option>
<option value="28">28</option>
<option value="30">30</option>
<option value="36">36</option>
<option selected value="42">42</option>
</select><p>
Vind je de afbeeldingen mooi?<br>Ga voor meer naar <a href="http://elwinvanderkolk.nl">elwinvanderkolk.nl</a>!
</p>
</div>
<div id="wrapper">
<div id="hider"></div>
</div>
</body>
</html>