-
Notifications
You must be signed in to change notification settings - Fork 0
/
banana_bread.html
68 lines (67 loc) · 2.5 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
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<title>Banana Bread</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script src="/javascripts/javascript.js"></script>
<style>
#wrapper {
margin-left: auto;
margin-right: auto;
width: 50%;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
</style>
</head>
<body>
<div id="wrapper">
<div class="center">
<h1>Banana Bread</h1>
</div>
<h2>Ingredients</h2>
<ul>
<li>2 to 3 ripe bananas, peeled (about 1 1/4 to 1 1/2 cups mashed)</li>
<li>1/3 cup melted butter, unsalted or salted</li>
<li>1 teaspoon baking soda</li>
<li>Pinch of salt</li>
<li>3/4 cup sugar (1/2 cup to make it less sweet, 1 cup for more sweet)</li>
<li>1 large egg, beaten</li>
<li>1 teaspoon vanilla extract</li>
<li>1 1/2 cups of all-purpose flour</li>
<li>1/3 to 1/2 cup chopped walnuts (optional - can substitute with other nuts or not include nuts)</li>
</ul>
<div class="center">
<img src="/images/banana_bread/ingredients.jpg" alt="Ingredients organized on stovetop" height="400" />
<br />
<span><i>Ingredients organized on stovetop</i></span>
</div>
<h2>Instructions</h2>
<ol>
<li>Preheat the oven to 350°F and butter a 4x8-inch loaf pan.</li>
<li>In a mixing bowl, mash the ripe bananas with a fork until completely smooth. Stir the melted butter into the mashed bananas.</li>
<li>Mix in the baking soda and salt. Stir in the sugar, beaten egg, and vanilla extract. Mix in the flour. Add the nuts (optional).</li>
<li>Pour the batter into your prepared loaf pan. Bake for 50 minutes to 1 hour at 350°F or until a tester inserted into the center comes out clean.</li>
<li>Remove from oven and let cool in the pan for a few minutes. Then remove the banana bread from the pan and let cool completely before serving. Slice and serve.</li>
</ol>
<p>Finished product:</p>
<div class="center">
<img src="/images/banana_bread/bread_cooling.jpg" alt="Bread cooling in pan" height="400" />
<br />
<span><i>Bread cooling in pan</i></span>
</div>
<div class="center">
<img src="/images/banana_bread/bread.jpg" alt="Cooled bread removed from pan" height="400" />
<br />
<span><i>Cooled bread removed from pan</i></span>
</div>
<footer>
<a href="http://robertjmccaffery.com/recipes.html">Back to Recipes</a> | <a href="http://robertjmccaffery.com/">Home</a>
</footer>
</div>
</body>
</html>