Update Recipe Template

This commit is contained in:
Dan
2024-09-25 14:00:13 -04:00
parent 8a284ccd7d
commit ce1b0cd240

View File

@@ -8,20 +8,28 @@
</head> </head>
<body> <body>
<div class="title"> <div class="title">
<h1>Recipe Name/h1> <h1>Recipe Name</h1>
</div> </div>
<img src="url"> <img class="mainphoto" src="url">
<br> <br>
Description <div class="desc">
Description
</div>
<hr>
<div class="ingredients">
<h2>Ingredients</h2>
<ul>
<li></li>
</ul>
</div>
<br> <br>
<h2>Ingredients</h2> <div class="steps">
<ul> <h2>Steps</h2>
<li></li> <ol>
</ul> <li></li>
<br> </ol>
<h2>Steps</h2> </div>
<ol>
<li></li>>
</ol>
</body> </body>
</html> </html>