-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
62 lines (54 loc) · 1.86 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<html>
<head>
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" rel="stylesheet">
<title>Index</title>
</head>
<body>
<div class="container py-3">
<header>
<div class="d-flex flex-column flex-md-row align-items-center pb-3 mb-4 border-bottom">
<span class="fs-4">Index</span>
</div>
</header>
<main>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th style="width: 30%;">Naam</th>
<th style="width: 70%;">Beschrijving</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-start" scope="row"><a href="./iconen/gevaarlijkestof/">Gevaarlijke stoffen</a></th>
<td></td>
</tr>
<tr>
<th class="text-start" scope="row"><a href="./iconen/object/">Object</a></th>
<td></td>
</tr>
<tr>
<th class="text-start" scope="row"><a href="./iconen/risico/">Risico</a></th>
<td></td>
</tr>
<tr>
<th class="text-start" scope="row"><a href="./iconen/voertuig/">Voertuigen</a></th>
<td></td>
</tr>
<tr>
<th class="text-start" scope="row"><a href="./iconen/voorziening/">Voorziening</a></th>
<td></td>
</tr>
</tbody>
</table>
</div>
</main>
<footer class="pt-4 my-md-5 pt-md-5">
<div class="row">
</div>
</footer>
</div>
</body>
</html>