-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanana-bread.html
59 lines (59 loc) · 2.38 KB
/
banana-bread.html
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
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Banana-Bread Receipt</title>
</head>
<body>
<!--the name of the receipts-->
<h1>My banana-bread receipts</h1>
<!--image of the banana bread-->
<img src="./images/banana-bread.webp" alt="image of the banana-bread" height="400" width="400">
<h2>This delicious and easy banana bread recipe <br>comes together quickly with budget-friendly<br> ingredients you likely already have on hand. </h2>
<!--how you can make this at home-->
<p>Combine the dry ingredients in one bowl and the wet ingredients in another</p>
<p>Stir the dry mixture into the wet mixture.</p>
<!--list of ingredients you will need to made this banana-bread-->
<h2>Ingredients</h2>
<ul>
<li>3 ripe bananas, mashed</li>
<li>1 cup white sugar</li>
<li>1 egg</li>
<li>¼ cup melted butter</li>
<li>1 ½ cups all-purpose flour</li>
<li>1 teaspoon baking soda</li>
<li>1 teaspoon salt</li>
</ul>
<!--this is the steps that are needed to make the banana-bread-->
<h2>Steps needed in making the Banana-Bread.</h2>
<ol>
<li>
<strong>Step 1</strong>
<p>Gather all ingredients. Preheat the oven to 325 degrees F (165 degrees C). Grease a 9x5-inch loaf pan.</p>
<img src="./images/step1 image.webp" alt="banana-bread image step1" height="300" width="300">
</li>
<li>
<strong>Step 2</strong>
<p>Combine bananas, sugar, egg, and butter together in a bowl. <br>Mix flour and baking soda together in a separate bowl; stir into banana mixture until batter is just mixed.</p>
<img src="./images/step2 image.webp" alt="step2" height="300" width="300">
>
</li>
<li>
<strong>Step 3</strong>
<p>Stir in salt; pour batter into the prepared loaf pan.</p>
<img src="./images/step3 image.webp" alt="step 3 image" height="300" width="300">
</li>
<li>
<strong>Step 4</strong>
<p>Bake in the preheated oven until a toothpick inserted in the center of the bread comes out clean, about 1 hour.</p>
<img src="./images/step4 image.webp" alt="step 4 image" height="300" width="300">
</li>
<li>
<strong>Step 5</strong>
<p>Enjoy!</p>
<img src="./images/step5 image.webp" alt="step 5 image" height="300" width="300">
</li>
</ol>
</body>
</html>