35 lines
675 B
HTML
35 lines
675 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 class="mainphoto" src="url">
|
|
<br>
|
|
<div class="desc">
|
|
Description
|
|
</div>
|
|
<hr>
|
|
<div class="ingredients">
|
|
|
|
<h2>Ingredients</h2>
|
|
<ul>
|
|
<li></li>
|
|
</ul>
|
|
</div>
|
|
<br>
|
|
<div class="steps">
|
|
<h2>Steps</h2>
|
|
<ol>
|
|
<li></li>
|
|
</ol>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |