64 lines
1.4 KiB
HTML
64 lines
1.4 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-uWxY/CJNBR+1zjPWmfnSnVxwRheevXITnMqoEIeG1LJrdI0GlVs/9cVSyPYXdcSF" crossorigin="anonymous">
|
||
|
<link rel="stylesheet" href="styles.css">
|
||
|
|
||
|
<title>Random Meal Generator</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container-fluid">
|
||
|
<h3 id="meal"></h3>
|
||
|
|
||
|
<div id="border">
|
||
|
<div class="row">
|
||
|
<div class="col">
|
||
|
<img src="" alt="Recipe image" width="300" height="300" id="thumbnail">
|
||
|
|
||
|
<br />
|
||
|
<br />
|
||
|
<br />
|
||
|
|
||
|
<ul>
|
||
|
<li>
|
||
|
<p id="category"></p>
|
||
|
</li>
|
||
|
|
||
|
<li>
|
||
|
<p id="location"></p>
|
||
|
</li>
|
||
|
|
||
|
<li>
|
||
|
<p id="source"></p>
|
||
|
</li>
|
||
|
|
||
|
<li>
|
||
|
<p id="yt"></p>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
<div class="col">
|
||
|
<h5>Ingredients:</h5>
|
||
|
<div id="ingredientsDiv">
|
||
|
<ul id="ingredientsList"></ul>
|
||
|
</div>
|
||
|
|
||
|
<br />
|
||
|
|
||
|
<h5>Instructions:</h5>
|
||
|
<p id="instructions"></p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-kQtW33rZJAHjgefvhyyzcGF3C5TFyBQBA13V1RKPf4uH+bwyzQxZ6CmMZHmNBEfJ" crossorigin="anonymous"></script>
|
||
|
<script src="index.js"></script>
|
||
|
</body>
|
||
|
</html>
|