-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipes.html
More file actions
95 lines (91 loc) · 4.29 KB
/
recipes.html
File metadata and controls
95 lines (91 loc) · 4.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/index.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<title>Recipes</title>
</head>
<body>
<nav>
<a href="home.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="recipes.html">Recipes</a>
<a href="https://ch0w.now.sh/register" class="button">Sign Up</a>
</nav>
<section class="section2">
<div>
<h3 class="recipe">Banana Bread</h3>
<p>
<ol>
<li class = "ingredients">Ingredients:</li>
<li>1 cup granulated sugar</li>
<li>8 tablespoons/1 stick of unsalted butter</li>
<li>2 large eggs</li>
<li>3 bananas rippened</li>
<li>1 tablespoon of milk</li>
<li>1 teaspoon of ground cinnamon</li>
<li>2 cups of allpurpose flour</li>
<li>1 teaspoon of baking powder</li>
<li>1 teaspoon of baking soda</li>
<li>1 teaspoon salt</li>
</ol>
</p>
<p>
<ol>
<li class = "ingredients">Directions:</li>
<li>1. preheat oven to 325 degrees F. Butter up a loaf pan</li>
<li>2. Cream the sugar and butter in large bowl until it's light and fluffy.</li>
<li>3. Mash bananas in another bowl then mix in milk and cinnamon.</li>
<li>4.In another bowl mix the flour, baking powder and baking soda<br> with the salt.</li>
<li>5. Pour the batter into the loaf pan then bake for 1 hour and 10 min.</li>
<li>6. Let it cool for about 15 minutes</li>
<li>7. Enjoy</li>
</ol>
</p>
</div>
<div>
<h3 class="recipe">Twice Baked Potato</h3>
<p>
<ol>
<li class = "ingredients">Ingredients:</li>
<li>8 potatoes, washed</li>
<li>3 tablespoons of oil,canola prefered</li>
<li>2 sticks of salted butter</li>
<li>1 cup of bacon bits</li>
<li>1 cup sour cream</li>
<li>1 cup of cheedar cheese</li>
<li>1 cup whole milk</li>
<li>2 teaspons seasoned salt</li>
<li>3 sliced green onions</li>
<li>ground black pepper</li>
</ol>
</p>
<p>
<ol>
<li class = "ingredients">Directions:</li>
<li>1. preheat oven to 400 degrees F. </li>
<li>2. place potatos on a backing sheet and rub them with the oil. Bake for 1 hour</li>
<li>3. Slice butter into pats. Place in a large bowl and add the bacon and sour cream</li>
<li>4. Remove potatoes from oven and lower the heat to 350 degrees F.</li>
<li>5. Cut each potato in half and scoop the insides into the mixing bowl. Leave some potato around the rim for support.<br>Lay the hollowed
out shell on a baking sheet</li>
<li>6. Smash the potatoes into the butter, bacon, and sour cream. Then add your cheese, milk, salt, onions, and pepper and mix well.</li>
<li>7. Fill the potato shells with filling then add a little more cheese on top, place them in the over for 15-20 minutes, then let cool and enjoy!</li>
</ol>
</p>
</div>
</section>
<footer>
<a href="home.html">Home</a>
<a href="about.html">About</a>
<a href="recipes.html">Recipes</a>
<a href="contact.html">Contact</a>
<a href="https://ch0w.now.sh/register" class="button">Sign Up</a>
</footer>
</body>
</html>