diff options
author | AlmightyMiau <almightymeow612@gmail.com> | 2025-01-23 17:23:26 -0800 |
---|---|---|
committer | AlmightyMiau <almightymeow612@gmail.com> | 2025-01-23 17:23:26 -0800 |
commit | ebce6952c53b45e5a64abfe0d4a3beb194f1c06e (patch) | |
tree | 4ded7bfcadaf0ccd46e929ab7b9e79830488f9a4 /index.html | |
parent | c53b1e2e37c41c84e91b93a4e6ab531e9bc7007c (diff) |
Use divs to organize recipe pagesmain
Add #container, .title, .header, .content, and footer rules to styles.css
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 20 |
1 files changed, 12 insertions, 8 deletions
@@ -7,13 +7,17 @@ <title>Document</title> </head> <body> - <h1> - Odin Recipes - </h1> - <ul> - <li><a href="recipes/cheesyCreamyRamen.html">Cheesy Creamy Ramen</a></li> - <li><a href="recipes/pesto.html">Pesto</a></li> - <li><a href="recipes/eggTomatoRice.html">Egg Tomato Rice</a></li> - </ul> + <div id="container"> + <h1 class="title"> + Odin Recipes + </h1> + <div class="content"> + <ul> + <li><a href="recipes/cheesyCreamyRamen.html">Cheesy Creamy Ramen</a></li> + <li><a href="recipes/pesto.html">Pesto</a></li> + <li><a href="recipes/eggTomatoRice.html">Egg Tomato Rice</a></li> + </ul> + </div> + </div> </body> </html>
\ No newline at end of file |