-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipee.html
More file actions
47 lines (39 loc) · 1.27 KB
/
recipee.html
File metadata and controls
47 lines (39 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe Details</title>
<link rel="stylesheet" href="styles/details.css">
</head>
<body>
<header>
<h1>Recipe Finder</h1>
</header>
<main class="recipe-container">
<div class="recipe-header">
<img id="recipe-img" src="" alt="Recipe Image">
<div class="recipe-title">
<h2 id="recipe-name">Recipe Name</h2>
<a id="youtube-link" href="#" target="_blank" class="youtube-btn">▶ Watch on YouTube</a>
</div>
</div>
<section class="ingredients-section">
<h3>Ingredients</h3>
<ul id="ingredients-list">
<!-- Ingredients will be dynamically added here -->
</ul>
</section>
<section class="instructions-section">
<h3>Instructions</h3>
<p id="recipe-instructions">
<!-- Recipe instructions go here -->
</p>
</section>
</main>
<footer>
<p>Powered by <a href="https://www.themealdb.com/" target="_blank">TheMealDB</a></p>
</footer>
<script src="scripts/details.js"></script>
</body>
</html>