-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (62 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cafe Menu</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="menu">
<header>
<h1>LANCHONETE CAFÉ E PÃO</h1>
<p class="established">Est. 2022</p>
</header>
<hr>
<main>
<section>
<h2>SALGADOS</h2>
<img src="https://cdn.freecodecamp.org/curriculum/css-cafe/coffee.jpg" alt="coffee icon"/>
<article class="item">
<p class="flavor">Pastel de carne / queijo</p><p class="price">3.00</p>
</article>
<article class="item">
<p class="flavor">Salgado de queijo e presunto</p><p class="price">3.75</p>
</article>
<article class="item">
<p class="flavor">Empadão</p><p class="price">3.50</p>
</article>
<article class="item">
<p class="flavor">Bomba</p><p class="price">4.00</p>
</article>
<article class="item">
<p class="flavor">Pão de queijo</p><p class="price">4.50</p>
</article>
</section>
<section>
<h2>SOBREMESAS</h2>
<img src="https://cdn.freecodecamp.org/curriculum/css-cafe/pie.jpg" alt="pie icon"/>
<article class="item">
<p class="dessert">Pudim</p><p class="price">4.50</p>
</article>
<article class="item">
<p class="dessert">torta de frango</p><p class="price">3.75</p>
</article>
<article class="item">
<p class="dessert">Cheesecake</p><p class="price">3.00</p>
</article>
<article class="item">
<p class="dessert">Bolo de chocolate</p><p class="price">2.50</p>
</article>
</section>
</main>
<hr class="bottom-line">
<footer>
<p>
<a href="https://github.com/verasdan" target="_blank">Visit my github</a>
</p>
<p class="address">Desafio do Free Code Camp Drive - Feito por <a href="https://github.com/verasdan" target="_blank">Dan veras</a></p>
</footer>
</div>
</body>
<html>