-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GR01 Hardware GIP</title>
</head>
<body>
<header>
<h1>Welkom op de website van GR01</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Over ons</a></li>
<li><a href="#">Projecten</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Over ons</h2>
<p>Wij zijn groep GR01 en werken aan ons GIP voor het vak Hardware. Deze website dient als onze basiswebsite voor het project.</p>
</section>
<section>
<h2>Projecten</h2>
<ul>
<li>Project 1</li>
<li>Project 2</li>
<li>Project 3</li>
</ul>
</section>
<section>
<h2>Contact</h2>
<p>Neem contact met ons op via email@example.com of telefonisch op 123-456-789.</p>
</section>
</main>
<footer>
<p>© 2023 GR01 Hardware GIP</p>
</footer>
</body>
</html>