forked from NickSchoenmakers/B1-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (83 loc) · 3.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DeveloperLand - Het meest leerzame prepark voor het hele gezin!</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<header>
<div class="header-content">
<div class="wrapper">
<img src="images/logo-big-v3.png" alt="Het logo van DeveloperLand met een draaimolen, kasteel, achtbaan en tot slot een gezin op de voorgrond." class="logo hidden-on-sm">
<h1 class="hidden-on-lg">DeveloperLand</h1>
</div>
</div>
</header>
<main>
<div class="wrapper">
<div class="row">
<article>
<h2 class="fun-for-family">De leukste dagen samen!</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores dolor id doloremque accusamus quod. Repellat cupiditate unde aperiam, ex fugiat beatae fuga. Esse distinctio rerum expedita fuga libero adipisci quis!</p>
</article>
<article>
<h2 class="accessibility">Betaalbaar en toegankelijk</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores dolor id doloremque accusamus quod. Repellat cupiditate unde aperiam, ex fugiat beatae fuga. Esse distinctio rerum expedita fuga libero adipisci quis!</p>
</article>
</div>
<div class="row">
<article>
<h2 class="rides">Bekijk onze geweldige attracties</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores dolor id doloremque accusamus quod. Repellat cupiditate unde aperiam, ex fugiat beatae fuga. Esse distinctio rerum expedita fuga libero adipisci quis!</p>
</article>
<article>
<h2 class="open-forever">Wij zijn ∞ open!</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores dolor id doloremque accusamus quod. Repellat cupiditate unde aperiam, ex fugiat beatae fuga. Esse distinctio rerum expedita fuga libero adipisci quis!</p>
</article>
</div>
<article class="emphasize">
<h2>Koop nu je tickets</h2>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Consequatur, ad. Similique neque sequi quibusdam, harum ratione fugit quia cupiditate doloribus totam obcaecati perferendis asperiores necessitatibus, exercitationem pariatur magni, quaerat minima.</p>
<p>
<a href="cart.html"><button>Bestel nu de tickets (€ 24,95)</button></a>
</p>
<p>
Of neem een abonnement, want met slechts 4 bezoekjes ben je al voordeliger uit!
</p>
<p>
<a href="cart.html"><button>Bestel een abonnement (€ 99 per jaar)</button></a>
</p>
</article>
<article>
<h2>Merchandise</h2>
<div class="row">
<div class="product">
<img src="images/merchandise/mok.JPG" alt="Een mok van DeveloperLand">
<span>Een mok met jouw eigen actiefoto erop!</span>
<a href="product.html"><button>Bestel nu (€ 14,95)</button></a>
</div>
<div class="product">
<img src="images/merchandise/mok.JPG" alt="Een mok van DeveloperLand">
<span>Een mok met jouw eigen actiefoto erop!</span>
<a href="product.html"><button>Bestel nu (€ 14,95)</button></a>
</div>
<div class="product">
<img src="images/merchandise/mok.JPG" alt="Een mok van DeveloperLand">
<span>Een mok met jouw eigen actiefoto erop!</span>
<a href="product.html"><button>Bestel nu (€ 14,95)</button></a>
</div>
</div>
</article>
</div>
</main>
<footer>
<div class="wrapper">
<div class="copyright">
© 2020 - 2021 DeveloperLand All Rights Reserved
</div>
</div>
</footer>
</body>
</html>