blob: b42e4dbaa3afe632abb92a63b59cb1de9f059347 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<?php include 'head.php' ?>
<title>producten</title>
<link rel='stylesheet' type='text/css' media='screen' href='products.css'>
</head>
<body>
<?php include 'navbar.php' ?>
<div class="main limwidth">
<h2>lijst met producten:</h2>
<div class="products">
<a href="/product.php?id=123" class="product">
<img src="img/placeholder.png" alt="">
<span class="price">3,45</span>
<span class="name">courgette</span>
</a>
<a href="/product.php?id=123" class="product">
<img src="img/placeholder.png" alt="">
<span class="price">3,45</span>
<span class="name">courgette</span>
</a>
<a href="/product.php?id=123" class="product">
<img src="img/placeholder.png" alt="">
<span class="price">3,45</span>
<span class="name">courgette</span>
</a>
<a href="/product.php?id=123" class="product">
<img src="img/placeholder.png" alt="">
<span class="price">3,45</span>
<span class="name">courgette</span>
</a>
</div>
</div>
<?php include 'footer.php' ?>
</body>
</html>
|