-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
74 lines (63 loc) · 2.46 KB
/
contact.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
<!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 | Contact</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">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" class="elwyn-nav__btn--active">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-contact_container">
<article>
<h1>Contacteer Ons</h1>
<p>Gelieve dit op een zo goed mogelijke manier in te vullen.</p>
</article>
<article>
<form method="POST">
<label for="naam">Volledige Naam: <span>*</span></label>
<br>
<input type="text" name="naam" required>
<br>
<label for="email">E-mail: <span>*</span></label>
<br>
<input type="email" name="email" required>
<br>
<label for="bericht">Bericht: <span>*</span></label>
<br>
<textarea name="bericht" cols="30" rows="10" required></textarea>
<input type="submit" value="Verstuur">
</form>
</article>
</main>
<footer>
<p>© 2021 - Elwyn Van der Borght</p>
</footer>
</body>
</html>