summaryrefslogtreecommitdiffstats
path: root/Aufgabe05/products.html
diff options
context:
space:
mode:
Diffstat (limited to 'Aufgabe05/products.html')
-rw-r--r--Aufgabe05/products.html26
1 files changed, 14 insertions, 12 deletions
diff --git a/Aufgabe05/products.html b/Aufgabe05/products.html
index 63656b7..91c1d37 100644
--- a/Aufgabe05/products.html
+++ b/Aufgabe05/products.html
@@ -3,21 +3,23 @@
<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>
- <a href="contact.html">Contact us</a>
- <a href=".">Home</a>
- <a href="categories.html">Categories</a>
- <a href="login.html">Login</a>
+ <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>
- <table border=1>
- <tr>
- <th>Furniture</th>
- </tr>
- <tr>
- <td><a href="productdetails.html">Chair</a></td>
- </tr>
- </table>
+ <div id="content">
+ <dl>
+ <dt><a href="productdetails.html">Chair</a></dt>
+ </dl>
+ </div>
+ <footer>Copyright by SomeCompany Ltd.</footer>
</body>
</html> \ No newline at end of file