forked from NickSchoenmakers/B1-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
69 lines (68 loc) · 2.31 KB
/
cart.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
<!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>
<h2>Winkelwagentje</h2>
<div>
<span>Dit zijn alle producten die u gaat bestellen. Controleer een laatste keer of alles klopt en ga daarna verder met de grote groene knop.</span>
<!--
Winkelwagen hier
-->
<div class="table">
<table BORDER="1">
<tr>
<td width="120" height="40"><b>Product</b></td>
<td width="80"><b>Prijs (Enkel)</b></td>
<td width="80"><b>Aantal</b></td>
<td width="80"><b>Prijs (Totaal)</b></td>
</tr>
<tr>
<td height="40" width="120">Entreekaartje Kind t/m 3 jaar</td>
<td width="80">0</td>
<td width="80">1</td>
<td width="80">0</td>
</tr>
<tr>
<td height="40" width="120">Entreekaartje Kind t/m 3 jaar</td>
<td width="80">0</td>
<td width="80">1</td>
<td width="80">0</td>
</tr>
<tr>
<td height="40" width="120">Entreekaartje Kind t/m 3 jaar</td>
<td width="80">0</td>
<td width="80">1</td>
<td width="80">0</td>
</tr>
</table>
</div>
<a href="payment.html"><button>Dit is correct, verder naar betaling</button></a>
</div>
</article>
</div>
</main>
<footer>
<div class="wrapper">
<div class="copyright">
© 2020 - 2021 DeveloperLand All Rights Reserved
</div>
</div>
</footer>
</body>
</html>