-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bakery Website.html
81 lines (59 loc) · 2.58 KB
/
Bakery Website.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="bakery-stylesheet.css" rel="stylesheet" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eli's Bakery</title>
</head>
<body>
<header>
<img src="bakery-logo.png" class="title-image" alt="logo"/>
<h1 id="title">Eli's Bakery</h1>
</header>
<article>
<h2 class="recipe-title"><strong>Chocolate Chip Cookies:</strong></h2>
<p class="ingredients-label">INGREDIENTS:</p>
<img src=""
<p>
<ul class="cookie-ingredients">
<li>1 cup salted butter (softened)</li>
<li>1 cup white (granulated) sugar</li>
<li>1 cup light brown sugar packed</li>
<li>2 tsp pure vanilla extract</li>
<li>2 large eggs</li>
<li>1 tsp baking soda</li>
<li>1 tsp baking soda</li>
<li>½ tsp baking powder</li>
<li>1 tsp sea salt</li>
<li>2 cups chocolate chips (or chunks, or chopped chocolate)</li>
</ul>
</p>
<p class="instructions-label">INSTRUCTIONS</p>
<p>
<ol class="cookie-instructions">
<li>Preheat oven to 375 degrees F. Line a baking pan with parchment paper and set aside.</li>
<li>In a separate bowl mix flour, baking soda, salt, baking powder. Set aside.</li>
<li>Cream together butter and sugars until combined.</li>
<li>Beat in eggs and vanilla until fluffy.</li>
<li>Mix in the dry ingredients until combined.</li>
<li>Add 12 oz package of chocolate chips and mix well.</li>
<li>Roll 2-3 TBS (depending on how large you like your cookies) of dough at a time into balls and
place them evenly spaced on your prepared cookie sheets.
(alternately, use a small cookie scoop to make your cookies). </li>
<li>Bake in preheated oven for approximately 8-10 minutes.
Take them out when they are just BARELY starting to turn brown.</li>
<li>Let them sit on the baking pan for 2 minutes before removing to cooling rack.</li>
<li>Enjoy!</li>
</ol>
</p>
</article>
<nav>
<button class="link-to-cookie-recipe"><a href="https://joyfoodsunshine.com/the-most-amazing-chocolate-chip-cookies/"
class="link-to-cookie-recipe-text" target="_blank"><strong>Original recipe</strong></a></button>
<button class="link-to-cart"><strong>Shop for ingredients</strong></button>
<button class="link-to-more-recipes"><strong>More recipes</strong></button>
</nav>
</body>
</html>