-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpotato_pancakes.html
84 lines (83 loc) · 3.26 KB
/
potato_pancakes.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<title>Potato Pancakes</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>Potato Pancakes</h1>
</div>
<h2>Ingredients</h2>
<ul>
<li>Roughly 3, or 2 1/2 lbs., of baking potatoes</li>
<li>1 medium onion (white)</li>
<li>2 eggs</li>
<li>1/3 cup flour</li>
<li>Salt and pepper to taste</li>
<li>Vegetable oil for frying</li>
<li>Green onions for garnish</li>
<li>Sour cream to serve with it</li>
<li>Apple sauce to serve with it</li>
</ul>
<div class="center">
<img src="/images/potato_pancakes/ingredients.jpg" alt="Ingredients organized on stovetop" height="250" />
<br />
<span><i>Ingredients organized on stovetop</i></span>
</div>
<h2>Instructions</h2>
<ol>
<li>Peel the potatoes and grate them into a large bowl.
<div class="center">
<img src="/images/potato_pancakes/shredding.jpg" alt="Shredding potatoes" height="250" />
<br />
<span><i>Shredding potatoes</i></span>
</div>
</li>
<li>Remove the outer layer and inside of the onion and grate that as well</li>
<li>Using a colander, your hands to squeeze, paper towels, or any combination you prefer, remove as much of the water from the shredded potatoes and onion. This is important for it to fry well.</li>
<li>In a separate bowl, add 2 eggs, 1/3 cup of flour, and salt and pepper. Whisk until everything is combined. This will act as the glue that holds the pancakes together.
<div class="center">
<img src="/images/potato_pancakes/egg_mixture.jpg" alt="Egg mixture whisked" height="250" />
<br />
<span><i>Egg mixture whisked</i></span>
</div>
</li>
<li>Add the egg mixture to the shredded potatoes and onion and mix thoroughly.</li>
<li>Heat oil in a frying pan on medium-high heat and fry the pancakes. Each side might take several minutes to reach desired crispness depending on the thickness of the pancake and level of heat.
<div class="center">
<img src="/images/potato_pancakes/frying.jpg" alt="Pancakes frying" height="250" />
<br />
<span><i>Pancakes frying</i></span>
</div>
</li>
<li>Let the pancakes rest on paper towels to absorb any excess oil and cool and then serve.</li>
</ol>
<p>I like to serve mine with apple sauce and sour cream. I prefer unsweetened apple sauce and I like to add a bit of cinnamon.</p>
<p>Finished product:</p>
<div class="center">
<img src="/images/potato_pancakes/potato_pancakes.jpg" alt="Potato pancakes plated and garnished with green onions with side bowls of garnished apple sauce and sour cream" height="400" />
<br />
<span><i>Potato pancakes plated and garnished with green onions with side bowls of garnished apple sauce and sour cream</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>