-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhouseholds.html
46 lines (43 loc) · 1.04 KB
/
households.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RKN - Households</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="logo/fav2.jpg">
</head>
<body>
<table>
<tr>
<td><a href="index.html"><img src="logo/RKN_logo3.png" alt="RKN logo"></a></td>
<td>
<h3>Households Items</h3>
</td>
</tr>
</table>
<table>
<thead>
<tr>
<th>Category</th>
<th>Products</th>
</tr>
</thead>
<tbody>
<tr>
<td>Plastics</td>
<td>Buckets<br>Mugs<br>Brooms<br>Mop</td>
</tr>
<tr>
<td>Bottles</td>
<td>Water<br>Bottles<br>Flasks</td>
</tr>
<tr>
<td>Gifts</td>
<td>Glasswares<br>Ceramics</td>
</tr>
</tbody>
</table>
<br>
<a href="contactUs.html">Contact us</a>
</body>
</html>