-
Notifications
You must be signed in to change notification settings - Fork 0
/
brafe2.html
95 lines (90 loc) · 3.1 KB
/
brafe2.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
<!DOCTYPE html>
<html lang="pt-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, shrink-to-fit=no">
<title>Brafé 2</title>
<link rel="stylesheet" href="css/brafe.css">
<link rel="shortcut icon" href="img/coffe.ico" type="image/x-icon">
</head>
<body>
<header>
<div class="header-informacoes">
<p>aberto de 08h às 18h - seg à sáb - rua bartolomeu mitre - botafogo</p>
</div>
<a class="header-logo" href="index.html">
<img src="img/logo1.png" alt="Brafé">
</a>
<nav class="header-menu">
<ul>
<li><a href="#">cafés</a></li>
<li><a href="#">capuccinos</a></li>
<li><a href="#">canecas</a></li>
<li><a href="#">souvenir</a></li>
</ul>
</nav>
</header>
<div class="container">
<nav class="filtro">
<h2>Preço</h2>
<ul>
<li>$</li>
<li>$$</li>
<li>$$$</li>
</ul>
<h2>Sabor</h2>
<ul class="sabor">
<li><span class="sabor-3">Marrom</span></li>
<li><span class="sabor-4">Laranja</span></li>
<li><span class="sabor-5">Amarelo</span></li>
</ul>
<h2>Tempo</h2>
<ul>
<li>15min +</li>
<li>25min +</li>
<li>35min +</li>
</ul>
</nav>
<section class="produtos">
<h1>Capuccinos</h1>
<ul>
<li>
<img src="img/cappucino1.jpg" alt="Café 1">
<span>R$ 3,25</span>
<h2>Vanilla Diceys</h2>
</li>
<li>
<img src="img/cappucino2.jpg" alt="Café 2">
<span>R$ 4,25</span>
<h2>Blueberry Latte</h2>
</li>
<li>
<img src="img/cappucino3.jpg" alt="Café 3">
<span>R$ 4,55</span>
<h2>Ghost Brown</h2>
</li>
<li>
<img src="img/cappucino4.jpg" alt="Café 4">
<span>R$ 3,25</span>
<h2>Strawberry</h2>
</li>
<li>
<img src="img/cappucino2.jpg" alt="Café 5">
<span>R$ 3,70</span>
<h2>Scane Comb</h2>
</li>
<li>
<img src="img/cappucino3.jpg" alt="Café 3">
<span>R$ 4,55</span>
<h2>Brown</h2>
</li>
</ul>
</section>
</div>
<footer class="footer">
<p>Projeto criado por: <a href="https://github.com/douglasoliveira96" target="_blank">Douglas de Oliveira Henrique.</a></p>
<p>E-mail: douglasdeoliveiradd@gmail.com</p>
</footer>
</body>
</html>