-
Notifications
You must be signed in to change notification settings - Fork 0
/
1_elements.html
70 lines (66 loc) · 2.23 KB
/
1_elements.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe for the Best Cinnamon Rolls</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1, h2 {
font-family: 'Georgia', serif;
}
h1 {
font-size: 2em;
margin-bottom: 10px;
}
h2 {
margin-top: 30px;
margin-bottom: 10px;
font-size: 1.5em;
}
ul {
margin-left: 20px;
list-style-type: disc;
}
ol {
margin-left: 20px;
}
</style>
</head>
<body>
<h1>Recipe for the Best Cinnamon Rolls</h1>
<h2>Ingredients</h2>
<h3>For the dough:</h3>
<ul>
<li>¾ cup warm milk</li>
<li>2 ¼ teaspoons yeast</li>
<li>¼ cup granulated sugar</li>
<li>1 egg plus 1 egg yolk</li>
<li>¼ cup butter</li>
<li>3 cups bread flour</li>
</ul>
<h3>For the filling:</h3>
<ul>
<li>2/3 cup dark brown sugar</li>
<li>1 ½ tablespoons ground cinnamon</li>
<li>¼ cup butter</li>
</ul>
<h2>Instructions</h2>
<ol>
<li>Mix the milk with the yeast, sugar, eggs.</li>
<li>Melt the butter and add to the mixture.</li>
<li>Add in the flour and mix until combined into a dough.</li>
<li>Knead the dough for 10 minutes.</li>
<li>Transfer the dough into a large bowl and cover with plastic wrap. Leave it somewhere to rise for 2 hours.</li>
<li>After the dough has doubled in size, roll it out into a large rectangle.</li>
<li>Melt the butter for the filling and mix in the sugar and cinnamon.</li>
<li>Spread the filling onto the dough then roll the dough into a Swiss roll.</li>
<li>Cut the roll into 3cm sections and place flat into a baking tray.</li>
<li>Preheat the oven to 350°F or 180°C, then bake the rolls for 20-25 minutes until lightly brown.</li>
</ol>
<footer style="text-align: center;">Tanvir Bin Faruk Ramim</footer>
</body>
</html>