summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorAlmightyMiau <almightymeow612@gmail.com>2025-01-23 17:23:26 -0800
committerAlmightyMiau <almightymeow612@gmail.com>2025-01-23 17:23:26 -0800
commitebce6952c53b45e5a64abfe0d4a3beb194f1c06e (patch)
tree4ded7bfcadaf0ccd46e929ab7b9e79830488f9a4 /index.html
parentc53b1e2e37c41c84e91b93a4e6ab531e9bc7007c (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.html20
1 files changed, 12 insertions, 8 deletions
diff --git a/index.html b/index.html
index a8cb3a7..5b288ac 100644
--- a/index.html
+++ b/index.html
@@ -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