blob: 91c1d37a073691abc29b15009673d1addd2cc0df (
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>Products</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header><h1>Furniture</h1></header>
<nav>
<dl>
<dt><a href="contact.html">Contact us</a></dt>
<dt><a href=".">Home</a></dt>
<dt><a href="categories.html">Categories</a></dt>
<dt><a href="login.html">Login</a></dt>
</dl>
</nav>
<div id="content">
<dl>
<dt><a href="productdetails.html">Chair</a></dt>
</dl>
</div>
<footer>Copyright by SomeCompany Ltd.</footer>
</body>
</html>
|