-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabellen.html
55 lines (52 loc) · 1.35 KB
/
tabellen.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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tabellen </title>
</head>
<body>
<h1>Pagina met tabel</h1>
<table border="1" cellpadding="4" width="100%">
<!-- Dit is de eerste rij-->
<tr>
<td>Naam</td>
<td>Email</td>
<td>Afdeling</td>
<td>Telefoon</td>
</tr>
<!-- Dit is de tweede rij-->
<tr>
<td>Peter</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
<td>Training</td>
<td>06-blablalblabl</td>
</tr>
<tr>
<td>Peter</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
<td>Training</td>
<td>06-blablalblabl</td>
</tr> <tr>
<td>Peter</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
<td>Training</td>
<td>06-blablalblabl</td>
</tr> <tr>
<td>Peter</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
<td>Training</td>
<td>06-blablalblabl</td>
</tr> <tr>
<td>Peter</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
<td>Training</td>
<td>06-blablalblabl</td>
</tr> <tr>
<td>Peter</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
<td>Training</td>
<td>06-blablalblabl</td>
</tr>
</table>
</body>
</html>