diff options
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 |