-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (81 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Classroom Opdracht</title>
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
nav {
background-color: #333;
padding: 1rem;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
margin-right: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
padding: 10px 20px;
display: block;
}
nav ul li a:hover {
background-color: #555;
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<h1>Welkom bij de GitHub Classroom Opdracht!</h1>
<!-- Voeg hier een paragraaf toe. -->
<p>Deze opdracht gaat over het maken van een website met behulp van HTML en CSS.</p>
<h2>Hobby's</h2>
<table border="1">
<tr>
<th>Naam</th>
<th>Hobby</th>
</tr>
<tr>
<td>Dennis</td>
<td>Gym</td>
</tr>
<tr>
<td>Robin</td>
<td>Gamen</td>
</tr>
</table>
<h2>Andere hobby's</h2>
<table border="1">
<tr>
<th>Hobby's</th>
</tr>
<tr>
<td>Programmeren</td>
</tr>
<tr>
<td>Chillen</td>
</tr>
<tr>
<td>Slapen</td>
</tr>
</table>
<!-- Student B zal hier een ongeordende lijst toevoegen -->
</body>
</html>