-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe3.html
102 lines (81 loc) · 3.63 KB
/
recipe3.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flavors de La Casa</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="CSS/single_recipe.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="CSS/universal_rules.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
</head>
<body>
<div class="hold-header">
<div id="header" class="header-wrapper">
<header class="header">
<a href="index.html"><img src="./images/logo.png" class="header-logo"></a>
<nav class="header-nav">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./recipes.html">Recipes</a></li>
<li><a href="./aboutus.html">About</a></li>
<li><a href="./your_cart.html">Cart</a></li>
</ul>
</nav>
</header>
</div>
</div>
<section class="main-content">
<h1>Alfajor</h1>
<img id="main-image" src="images/alfajor.jpeg">
<p>Alfajor is a buttery cornstarch cookie sandwich filled with dulce de leche. It was brought to South America in the 16th century with the invasion of the Spanish conquistadors. It is very popular in Argentina.</p>
<div class="ingredientsbox">
<div class="ingredients">
<h2>INGREDIENTS THAT COME IN THE KIT</h2>
</div>
<div class="ingredientslist">
<ul>
<li>1 1/2 cups all-purpose flour</li>
<li>2 1/8 cups cornstarch</li>
<li>2 teaspoons baking powder</li>
<li>1/2 teaspoon baking soda</li>
<li>1 3/4 sticks unsalted butter</li>
<li>3/4 cup granulated sugar</li>
<li>3 large egg yolks</li>
<li>2 teaspoons vanilla extract</li>
<li>12 oz. dulce de leche imported from Buenos Aires(Argentina)</li>
<li>1/2 cup unsweetened shredded coconut</li>
</ul>
</div>
</div>
<div class="final-purchase">
<p>Each meal kit serves 3 people!</p>
<p>$15.00</p>
<a href="your_cart.html">
<button id="buy-button"> BUY NOW</button></a>
</div><br><br>
</div>
</section>
</div>
<div id="footer" class="footer-wrapper">
<footer class="footer">
<ul class="footer-otherLinks">
<li class="footer-listItem"><a href="recipes.html">Recipes</a></li>
<li class="footer-listItem"><a href="aboutus.html">About Us</a></li>
<li class="footer-listItem"><a href="your_cart.html">Cart</a></li>
</ul>
<ul class="footer-socialMedia">
<li><a href="https://www.facebook.com"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com"><i class="fa fa-instagram"></i></a></li>
<li><a href="https://www.youtube.com"><i class="fa fa-youtube"></i></a></li>
<li><a href="https://www.pinterest.com"><i class="fa fa-pinterest"></i></a></li>
</ul>
<p class="footer-copyRights">© 2022 Flavors De La Casa -US, Inc. All Rights Reserved.</p>
</footer>
</div>
</body>
</html>