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<!doctype html>
<html lang="nl">
<head>
<title>Weektaken OMHP</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="favicon.ico" />
<meta name="robots" content="noindex" />
<script src="script.js"></script>
</head>
<body>
<header>
<h1><a href="index.html">Weektaken</a></h1>
</header>
<main>
<p>
van
<select id="names">
<option disabled selected>Kies een naam</option>
</select>
</p>
<table id="table">
<thead>
<tr>
<th>Weeknr</th>
<th>Maandag</th>
<th>Taak</th>
</tr>
</thead>
<tbody></tbody>
</table>
</main>
<footer>
<a href="#" id="icslink">Exporteer naar agenda</a>
</footer>
</body>
</html>