-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOverzicht.html
96 lines (96 loc) · 2.22 KB
/
Overzicht.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="nl">
<header>
<a href="Dierenasiel.html"><img src="image.jpg" alt="Go to the homepage." height="100" width="100"></a>
<link rel="stylesheet" href="style.css" />
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
</style>
</header>
<body>
<h1>
Overzicht van dieren
</h1>
<table>
<thead><b>Hond</b>
<tr>
<th>Naam</th>
<th>Leeftijd</th>
<th>Reg. Nr.</th>
<th>Gereserveerd</th>
</tr>
<tr>
<td><b>Boris</b></td>
<td>8</td>
<td>123</td>
<td>Nee</td>
</tr>
<tr>
<td><b>Waffles</b></td>
<td>2</td>
<td>456</td>
<td>Ja</td>
</tr>
</thead>
<tbody>
Onze honden zijn echt geweldig.
</tbody>
</table>
<table>
<thead><b>Kat</b>
<tr>
<th>Naam</th>
<th>Leeftijd</th>
<th>Reg. Nr.</th>
<th>Gereserveerd</th>
</tr>
<tr>
<td><b>Sprinkles</b></td>
<td>5</td>
<td>987</td>
<td>Ja</td>
</tr>
<tr>
<td><b>Sniffles</b></td>
<td>19</td>
<td>645</td>
<td>Nee</td>
</tr>
</thead>
<tbody>
Onze katten zijn echt scchatjes.
</tbody>
</table>
<h2>
Voeg hier een dier toe:
</h2>
<form>
<label for="naam">Naam</label>
<input type="text" id="naam" />
<br />
<input type="submit" value="Toevoegen" />
<br />
<label for="Leeftijd">Leeftijd</label>
<input type="text" id="Leeftijd" />
<br />
<input type="submit" value="Toevoegen" />
<br />
<label for="Reg. Nr.">Reg. Nr.</label>
<input type="text" id="Reg. Nr." />
<br />
<input type="submit" value="Toevoegen" />
<br />
<label for="Gereserveerd">Gereserveerd</label>
<input type="text" id="Gereserveerd" />
<br />
<input type="submit" value="Toevoegen" />
</form>
<a href="Dierenasiel.html">Home</a>
</body>
</html>