diff options
Diffstat (limited to 'Aufgabe05/categories.html')
| -rw-r--r-- | Aufgabe05/categories.html | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/Aufgabe05/categories.html b/Aufgabe05/categories.html index c39e02b..ecf50ac 100644 --- a/Aufgabe05/categories.html +++ b/Aufgabe05/categories.html @@ -3,20 +3,22 @@ <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> - <a href="contact.html">Contact us</a> - <a href=".">Home</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="login.html">Login</a></dt> + </dl> </nav> - <table border=1> - <tr> - <th>Categories</th> - </tr> - <tr> - <td><a href="products.html">Furniture</a></td> - </tr> - </table> + <div id="content"> + <dl> + <dt><a href="products.html">Furniture</a></dt> + </dl> + </div> + <footer>Copyright by SomeCompany Ltd.</footer> </body> </html>
\ No newline at end of file |
