Skip to content

Commit

Permalink
Add divs to divide page into 2 parts
Browse files Browse the repository at this point in the history
  • Loading branch information
Delta-43 committed Jul 13, 2024
1 parent a546b38 commit 82edbe8
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,20 @@
<link rel="icon" href="./images/favicon.ico">
</head>
<body>
<h1>Odin Recipes</h1>
<a href="./recipes/ice-cream.html">Ice-Cream</a>
<header>
<h1 style="text-align:center;">Odin Recipes</h1>
</header>
<main id="content">
<div id="content-left" style="border: 1px solid black; width: 600px; float: left;">
<a href="./recipes/ice-cream.html">Ice-Cream</a>
</div>
<div id="content-right" style="border: 1px solid black; width: 600px; float: right;">
<a href="./recipes/ice-cream.html">Ice-Cream</a>
</div>
</div>



</main>
</body>
</html>

0 comments on commit 82edbe8

Please sign in to comment.