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