-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (51 loc) · 2.1 KB
/
index.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
<!DOCTYPE html>
<html lang="br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Menu</title>
</head>
<body>
<div class="caixa">
<h1 class="subtitulos">Menu</h1>
<div class="div_subclasses">
<h2 class="subtitulos">Breakfast</h2>
<div class="ingrediente_descricao">
<p>BURGUER_____________________<strong>$9,00</strong></p>
<p class="ingredientes">Bacon, steak, lettuce, tomato and bread</p>
</div>
<div class="ingrediente_descricao">
<p>FRUIT SALAD__________________<strong>$3.00</strong></p>
<p class="ingredientes">Lettuce, tomato, carrot, watermelon, strawberry</p>
</div>
<p class="item">FRIES__________________________<strong>$3.00</strong></p>
</div>
<div class="div_subclasses">
<h2 class="subtitulos">Main Course</h2>
<div class="ingrediente_descricao">
<p>CHICKEN FRIES________________<strong>$5.00</strong></p>
<p class="ingredientes">Chicken, salad, tomato, rice, bean</p>
</div>
<div class="ingrediente_descricao">
<p>STEAK(RARE, MEDIUM)________<strong>$8.00</strong></p>
<p class="ingredientes">Steak, saled, tomato, rice, bean</p>
</div>
</div>
<div class="div_subclasses">
<h2 class="subtitulos">Desserts</h2>
<p class="item">CUPCAKE______________________<strong>$4.00</strong></p>
<p class="item">PUDDING______________________<strong>$4.00</strong></p>
</div>
<div class="div_subclasses">
<h2 class="subtitulos">Drinks</h2>
<div class="ingrediente_descricao">
<p>JUICE(JAR, CUP)_______________<strong>$3.00</strong></p>
<p class="ingredientes">Orange, starberry, mango</p>
</div>
<p class="item">MINERAL WATER______________<strong>$1.00</strong></p>
</div>
</div>
</body>
</html>