-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
68 lines (68 loc) · 2.52 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
<!DOCTYPE html>
<html lang="nl">
<head>
<title>Travel & Discover</title>
<meta charset="utf-8">
<meta name="description" content="Promo content for destinations">
<meta name="keywords" content="travel, destination, discover">
<meta name="author" content="Ramon Kea">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<img src="img/website-logo.png" alt="Het logo van Travel & Discover" title="Travel & Discover logo"/>
<h1>Travel & Discover</h1>
<h2>Fulfill your urge to explore</h2>
</header>
<nav>
<ul>
<li> <a href=index.html> home </a> </li>
<li> <a href=bestdestinations.html> bestdestinations </a> </li>
<li> <a href=tickets.html> tickets </a> </li>
<li> <a href=contact.html> contact </a> </li>
</ul>
</nav>
<section>
<header>
<h3>U kunt dit form invullen als u in contact wilt komen met ons</h3>
</header>
<form action="" method="get">
<fieldset>
<legend>Contact form</legend>
bezoeker naam: <input type="text" name="naam">
bezoeker e-mail: <input type="email" name="email">
bezoeker bericht: <input type="text" name="message">
<input type="submit" value="Verstuur">
</fieldset>
</form>
</section>
<aside>
<p>
<a href="https://www.tui.nl/">
<img class="destination-image" src="img/destination-cyprus.jpg" alt="https://www.tui.nl/">
</a>
</p>
<p>
<a href="https://www.tui.nl/">
<img class="destination-image" src="img/destination-ijsland.jpg" alt="https://www.tui.nl/">
</a>
</p>
<p>
<a href="https://www.tui.nl/">
<img class="destination-image" src="img/destination-thailand.jpg" alt="https://www.tui.nl/">
</a>
</p>
<footer>
<p>
<em>Bron © 2021 tui.nl</em>
</p>
</footer>
</aside>
<footer>
<p>
<em>Bron © 2021 tui.nl</em>
</p>
<p class="cookie-statement">Cookie statement</p>
</footer>
</body>
</html>