forked from NickSchoenmakers/B1-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.html
57 lines (56 loc) · 2 KB
/
payment.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
<!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">
<article class="payment-styling">
<h2 class="line">Betaling afronden</h2>
<span>Selecteer de manier waarop u de bestelling wilt betalen.</span>
<div class="sidy-by-side">
<div>
<a href="javascript:alert('Dit valt buiten de scope van dit project');">
<img src="images/ideal-logo-1024.png" alt="Met iDeal betalen" class="payment-option">
</a>
</div>
<div>
<a href="javascript:alert('Dit valt buiten de scope van dit project');">
<img src="images/visa-logo-1024.png" alt="Met Visa betalen" class="payment-option">
</a>
</div>
<div>
<a href="javascript:alert('Dit valt buiten de scope van dit project');">
<img src="images/mastercard-logo-1024.png" alt="Met Mastercard betalen" class="payment-option">
</a>
</div>
<div>
<a href="javascript:alert('Dit valt buiten de scope van dit project');">
<img src="images/paypal-logo-1024.png" alt="Met PayPal betalen" class="payment-option">
</a>
</div>
</div>
</article>
</div>
</main>
<footer>
<div class="wrapper">
<div class="copyright">
© 2020 - 2021 DeveloperLand All Rights Reserved
</div>
</div>
</footer>
</body>
</html>