-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (73 loc) · 3.27 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="nl-BE">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>U-Trip | Historische Locaties</title>
<meta name="description" content="Utrip Historische Locaties">
<link rel="stylesheet" href="./css/reset.css ">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<a href="./index.html">u-<span>trip</span></a>
<nav>
<ul>
<li><a href="/index.html" class="elwyn-nav__btn--active">Home</a></li>
<li><a href="/trip.html">Locaties</a>
<ul>
<li><a href="/trips/stonehenge.html">Stonehenge</a></li>
<li><a href="/trips/notre-dame.html">Notre-Dame</a></li>
<li><a href="/trips/colosseum.html">Colosseum</a></li>
<li><a href="/trips/eiffel-toren.html">Eiffel-Toren</a></li>
<li><a href="/trips/dom-van-keulen.html">Dom van Keulen</a></li>
<li><a href="/trips/schloss.html">Schloss Schönbrunn</a></li>
</ul>
</li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</nav>
<form>
<input type="search" placeholder=" Zoek...">
<input type="submit" value="Zoek">
</form>
<a href="./trip.html"><button>Historische rondreis</button></a>
</header>
<main class="elwyn-home_container">
<section>
<h1>Een rondreis door de historische plekken van Europa!</h1>
<h2>Volg jij ons mee in dit avontuur?</h2>
</section>
<section>
<article>
<h2>Historische rondreis door Europa</h2>
<p>Deze rondreis van zes locaties neemt je door heel europa, we gaan van Italië naar Frankrijk tot
Engeland en verder! Er word vervoer geregeld met het vliegtuig, en per bus voor de locaties die zich
in het zelfde land bevinden en buurlanden. U zal begeleid worden door een gids. Indien u dit niet
wil kunt u ons dit laten weten.</p>
</article>
<article>
<h2>Belangrijkste plaatsen in de historie</h2>
<p>Je word meegenomen naar plaatsen die een belangrijke rol hadden in de historie, gecombineerd met een
leuke geschiedenis hierover ontdek je het oude Europa! Ben je nieuwsgierig naar deze locaties? Klik
dan zeker op "Locaties" hierboven in de navigatie!</p>
</article>
</section>
<aside>
<article>
<h1>Trip Organisator</h1>
<img src="./assets/images/elwyn.jpg" alt="elwyn">
<p>Ik ben Elwyn Van der Borght, Ik heb deze
trip samengesteld voor mijn langlopende
taak van dit jaar. Als jullie meegaan zie ik
jullie dan! U kunt mij gerust contacteren op
de contact pagina.</p>
</section>
</aside>
</main>
<footer>
<p>© 2021 - Elwyn Van der Borght</p>
</footer>
</body>
</html>