blob: 46e74c99b44c471bf1138b4023a283c3ed1dc46a (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Categories</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header><h1>Categories</h1></header>
<nav>
<dl>
<dt><a href="contact.html">Contact us</a></dt>
<dt><a href=".">Home</a></dt>
<dt><a href="login.html">Login</a></dt>
</dl>
</nav>
<div id="content">
<dl>
<dt><a href="products.html">Furniture</a></dt>
</dl>
<div class="spacer"></div>
</div>
<footer>Copyright by SomeCompany Ltd.</footer>
</body>
</html>
|