-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 846 Bytes
/
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
<!-- TODO 1: Create the HTML Boilerplate -->
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<title>Mijn eerste website</title>
</head>
<body>
<h1>Maikel's eerste webpagina</h1>
<h2>Mijn eerste stapjes in web development</h2>
<hr />
<h1><a href="./public/birthday-invite.html">Uitnodiging voor mijn verjaardag</a></h1>
<h2>Kom je ook op mijn feestje?</h2>
<hr />
<img src="./assets/images/verjaardaguitnodiging.png" height="200" />
<hr/>
<h1><a href="./public/movie-ranking.html">Mijn beste films</a></h1>
<h2>Ranking volgens een echte filmkenner (not)</h2>
<hr />
<img src="./assets/images/favo films.png" height="200" />
<hr/>
<a href="./public/about.html">Over mij</a>
<a href="./public/contact.html">Contact</a>
</body>
</html>