Files
TOP-Recipes/odin-recipes/template.html
Dan 6240713ae2 Add recipe template
Add two recipes
2024-09-18 00:19:46 -04:00

24 lines
403 B
HTML

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