forked from vedant-0408/group_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lunch.html
53 lines (50 loc) · 2.22 KB
/
lunch.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="lunch.css">
<title>Exotic Lunch Menu</title>
</head>
<body>
<header>
<h1>Exotica Lunch Menu</h1>
</header>
<main>
<div class="menu">
<!-- Dish 1 -->
<div class="dish">
<img src="lunch5.jpg" alt="Dish 1">
<h2>Empadao</h2>
<p>A flaky crust pie filled with casseroled chicken and a mix of vegetables such as corn, hearts of palm, and peas. </p>
<span class="price">$10</span>
</div>
<div class="dish">
<img src="lunch4.jpg" alt="Dish 1">
<h2>Brigadeiro</h2>
<p>This classic dessert is made of condensed milk, cocoa powder, butter, and then shaped into balls and covered in chocolate sprinkles. </p>
<span class="price">$11</span>
</div>
<div class="dish">
<img src="lunch3.jpg" alt="Dish 1">
<h2>Canjica</h2>
<p>Canjica is a sweet porridge made with white corn, cooked with milk, coconut milk and sugar with sprinkles of cinnamon on top. It is usually served during the annual winter festivals in June. </p>
<span class="price">$12</span>
</div>
<div class="dish">
<img src="lunch1.jpg" alt="Dish 1">
<h2>Pao De Queijo</h2>
<p> The light, fluffy baked cheese rolls or buns became popular in the 1950s although the recipe dates back centuries.</p>
<span class="price">$19</span>
</div>
<div class="dish">
<img src="lunch.jpg" alt="Dish 1">
<h2>Picanha</h2>
<p>Barbecued meat is a Brazilian specialty. Picanha, a triangular cut of beef that comes from the rump cap muscle, is the most popular cut and it is seasoned with only salt before it’s cooked to perfection. </p>
<span class="price">$4</span>
</div>
</div>
</main>
<script src="lunch.js"></script>
</body>
</html>