blob: 6d2deb32df2108effde74ffb48c8f09cdeddd14b (
plain)
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Pizza Recipe</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=devide-width,initial-scale=1">
<link rel="stylesheet" href="../style.css">
<link rel="icon" type="image/x-icon" href="../../images/favicon.ico" sizes="16x16">
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="../../index.html">Home</a>
</li>
<li>
<a href="../about.html">About</a>
</li>
<li>
<a href="./overview.html">Recipes</a>
</li>
<li>
<a href="../rock-paper-scissors.html">Rock Paper Scissors</a>
</li>
</ul>
</nav>
</header>
<div id="headerwrapper">
<h1>My Pizza Recipe</h1>
</div>
<main>
<div class="wrapper-space">
<div class="lists">
<h2>Description</h2>
<p>
This is my take on a classic margherita pizza.<br>
We will make our own pizza dough and sauce!
</p>
<h2>Ingredients</h2>
<ul>
<li>500g Flour</li>
<li>325g Water</li>
<li>10g Salt</li>
<li>7g Active Dry Yeast</li>
<li>400g Canned Tomatoes (~1 Can)</li>
<li>100g Mozzarella</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>
<p>
Mix all dry ingredients in a bowl.
</p>
</li>
<li>
<p>
Add the water and knead the dough until no dry flour is left.
</p>
</li>
<li>
<p>
Cover the bowl and let it rest a couple hours, until doubled in size.
You can also let it rest overnight.
</p>
</li>
<li>
<p>
Once the dough has finished resting, take it out of the bowl onto your working surface
and knead it a bit more, about 2-3 minutes.
</p>
</li>
<li>
<p>
Divide the dough into four equally sized portions. Take one portion and lightly cover it
with a damp towel to let it rest for an additional hour.
You can put the other portions into the fridge or freezer.
While the dough is resting one final time, preheat your oven as high as it can go.<br>
</p>
</li>
<li>
<p>
Meanwhile, it's time to make the pizza sauce.
For this, I usually just use canned tomatoes. You can use
your hands to crush them or puree it with a stick blender.
Add some salt and pepper to your liking.
If you're feeling fancy, you can add oregano and thyme,
or any other additional seasonings you like.<br>
This makes enough sauce for multiple pizzas. You can also use it for pasta.
</p>
</li>
<li>
<p>
Stretch out the dough as big as you can.
Put the sauce and mozzarella on top. I like to rip the mozzarella by hand.
Then the pizza goes into the oven for about 7-10 minutes,
depending how hot you oven can go.
Once the mozzarella starts bubbling and is a nice golden
brown it's done!
</p>
</li>
</ol>
</div>
<div class="img-wrapper img-right">
<img src="../../images/pizza.jpg" alt="An image of a classic margherita pizza.">
</div>
</div>
</main>
<footer>
<div class="wrapper-centered">
<p>Bottom Text</p>
</div>
</footer>
</body>
<script src=""></script>
</html>
|