-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe1.html
103 lines (83 loc) · 3.89 KB
/
recipe1.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
103
<!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>Ceviche</h1>
<img id="main-image" src="images/ceviche.jpeg">
<p>Ceviche is a seafood dish originally from ancient Incan, which corresponds to the modern-day country of Peru and Ecuador. It is now known as a very important dish in Peruvian gastronomy.</p>
<div class="ingredientsbox">
<div class="ingredients">
<h2>INGREDIENTS THAT COME IN THE KIT</h2>
</div>
<div class="ingredientslist">
<ul>
<li>1 pound fresh, skinless snapper cut into 1/2-inch dice</li>
<li>2 cups fresh lime juice</li>
<li>1 medium white onion, chopped into 1/2-inch pieces</li>
<li>2 medium-large tomatoes, chopped into 1/2-inch pieces</li>
<li>2 jalapeños, stemmed, seeded and finely chopped </li>
<li>1/3 cup chopped cilantro, plus a few leaves for garnish </li>
<li>1/3 cup chopped pitted green olives (manzanillos for a typical Peruvian flavor)</li>
<li>2 tablespoons extra-virgin olive oil</li>
<li>Salt</li>
<li>3 tablespoons fresh orange juice </li>
<li>2 small ripe avocados, peeled, pitted and diced </li>
<li>1 package of tortilla chips for serving</li>
</ul>
</div>
</div>
<div class="final-purchase">
<p>Each meal kit serves 3 people!</p>
<p>$25.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>