-
Notifications
You must be signed in to change notification settings - Fork 0
/
green_bean_casserole.html
60 lines (59 loc) · 1.87 KB
/
green_bean_casserole.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Green Bean Casserole</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>Green Bean Casserole</h1>
</div>
<p>The classic recipe of the traditional Thanksgiving dish.</p>
<h2>Ingredients</h2>
<ul>
<li>1 can (10 1/2 ounces) Campbell's Condensed Cream of Mushroom Soup</li>
<li>3/4 cup milk</li>
<li>1 tsp pepper</li>
<li>2 cans (14 1/2 ounces each) any style Green Beans, drained</li>
<li>1 1/3 cups French’s Crispy Fried Onions, Original, divided</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>Preheat oven to 350°F.</li>
<li>Mix soup, milk and pepper in a casserole dish.</li>
<li>Stir in beans and top with 2/3 cup Crispy Fried Onions.</li>
<li>Bake 30 minutes or until hot. Stir.</li>
<li>Top with remaining 2/3 cup onions. Bake 5 minutes until onions are golden brown.</li>
</ol>
<p>Finished product:</p>
<div class="center">
<img src="/images/green_bean_casserole/finished_in_casserole_dish.jpg" alt="Finished casserole in casserole dish" height="400" />
<br />
<span><i>Finished casserole in casserole dish</i></span>
</div>
<div class="center">
<img src="/images/green_bean_casserole/finished_plated.jpg" alt="Finished casserole plated" height="400" />
<br />
<span><i>Finished casserole plated</i></span>
</div>
</div>
<footer>
<a href="http://robertjmccaffery.com/recipes.html">Back to Recipes</a> | <a href="http://robertjmccaffery.com/">Home</a>
</footer>
</body>
</html>