Files
TOP-Recipes/odin-recipes/template.html
Dan 8a284ccd7d Add css
Make html prettier
2024-09-25 13:54:50 -04:00

27 lines
490 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../style.css">
<title>Title</title>
</head>
<body>
<div class="title">
<h1>Recipe Name/h1>
</div>
<img src="url">
<br>
Description
<br>
<h2>Ingredients</h2>
<ul>
<li></li>
</ul>
<br>
<h2>Steps</h2>
<ol>
<li></li>>
</ol>
</body>
</html>