-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (85 loc) · 3 KB
/
index.html
File metadata and controls
91 lines (85 loc) · 3 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 shrink-to-fit=no">
<title>Brafé 2 - Isaac - Grid Origamid</title>
<link rel="stylesheet" href="/grid.css">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<p class="menu-info">aberto de 08 às 18h - seg a sáb - rua vereador duque estrada - santa rosa</p>
<h1 class="menu-logo"><a href="index.html"><img src="/img/brafe.png" alt="Brafé Logo"></a></h1>
<nav class="menu-nav">
<ul>
<li><a href="#">cafés</a></li>
<li><a href="#">cappuccinos</a></li>
<li><a href="#">canecas</a></li>
<li><a href="#">souvenir</a></li>
</ul>
</nav>
</header>
<div class="container">
<nav class="filtro grid-4">
<h3>Preço</h3>
<ul>
<li>$</li>
<li>$$</li>
<li>$$$</li>
</ul>
<h3>Sabor</h3>
<ul class="sabor">
<li><span class="sabor-1">Marrom</span></li>
<li><span class="sabor-2">Laranja</span></li>
<li><span class="sabor-3">Amarelo</span></li>
</ul>
<h3>Tempo</h3>
<ul>
<li>15min +</li>
<li>25min +</li>
<li>35min +</li>
</ul>
</nav>
<section class="produtos grid-8">
<h2>Cappuccinos</h2>
<ul class="row-mobile">
<li class="grid-mobile-6">
<img src="/img/cafe-1.jpg" alt="">
<span>R$ 3,25</span>
<h4>Vanilla Diceys</h4>
</li>
<li class="grid-mobile-6">
<img src="/img/cafe-2.jpg" alt="">
<span>R$ 4,50</span>
<h4>Blueberry Latte</h4>
</li>
<li class="grid-mobile-6">
<img src="/img/cafe-3.jpg" alt="">
<span>R$ 3,25</span>
<h4>Ghostbusters Brown</h4>
</li>
<li class="grid-mobile-6">
<img src="/img/cafe-4.jpg" alt="">
<span>R$ 4,50</span>
<h4>Strawberry Fields</h4>
</li>
<li class="grid-mobile-6">
<img src="/img/cafe-5.jpg" alt="">
<span>R$ 3,25</span>
<h4>Scone Comb</h4>
</li>
<li class="grid-mobile-6">
<img src="/img/cafe-6.jpg" alt="">
<span>R$ 4,50</span>
<h4>Wild Bill</h4>
</li>
</ul>
</section>
</div>
<footer class="footer">
<p>Este é um projeto feito na marra por Isaac Barbosa</p>
<p>Santa Rosa, Niterói - Rio de Janeiro - Brasil</p>
</footer>
</body>
</html>