summaryrefslogtreecommitdiffstats
path: root/Aufgabe05/products.html
blob: 63656b7a010e5de7cbe8e9fb35c067af2fe96ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Products</title>
</head>
<body>
	<nav>
		<a href="contact.html">Contact us</a>
		<a href=".">Home</a>
		<a href="categories.html">Categories</a>
		<a href="login.html">Login</a>
	</nav>
	<table border=1>
	  <tr>
	    <th>Furniture</th>
	  </tr>
	  <tr>
	    <td><a href="productdetails.html">Chair</a></td>
	  </tr>
	</table>
</body>
</html>