-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
173 lines (164 loc) · 5.93 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!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" />
<link rel="stylesheet" href="./assets/css/reset.css" />
<link rel="stylesheet" href="./assets/css/fonts.css" />
<link rel="stylesheet" href="./assets/css/colors.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Kenzie Restaurante</title>
</head>
<body>
<!-- CABECALHO -->
<header>
<div class="container">
<img src="./assets/img/logo-kenzie.png" alt="logo kenzie Academy" />
<h1>Restaurante</h1>
</div>
</header>
<!-- CONTEUDO PRINCIPAL -->
<main class="container">
<!-- VITRINE DE PRODUTOS -->
<section class="products">
<ul class="products-list">
<!-- primeiro produto -->
<li class="product">
<img src="./assets/img/kenzie_burgao.png" alt="Kenzie Burgao" />
<h3 class="title-1">Kenzie Burgão</h3>
<p class="text-caption color-grey-3">
O Hambúrguer do Dev Full Stack Kenzie!
</p>
<div class="footer-products">
<span class="title-2">R$ 28,00</span>
<button id="01">
<img src="./assets/img/cart-icon.png" alt="icone do carrinho" />
</button>
</div>
</li>
<!-- segundo produto -->
<li class="product">
<img
src="./assets/img/refrigerante.png"
alt=" imagem refrigerante"
/>
<h3 class="title-1">Refrigerante</h3>
<p class="text-caption color-grey-3">
Refrigerante bem gelado para acompanhar sua refeição
</p>
<div class="footer-products">
<span class="title-2">R$ 7,50</span>
<button id="02">
<img src="./assets/img/cart-icon.png" alt="icone do carrinho" />
</button>
</div>
</li>
<!-- terceiro produto -->
<li class="product">
<img src="./assets/img/kenzie_burguinho.png" alt="Kenzie Burgao" />
<h3 class="title-1">Kenzie Burguinho</h3>
<p class="text-caption color-grey-3">
Delicioso hambúrguer acompanhado de um ovo frito de gema mole!
</p>
<div class="footer-products">
<span class="title-2">R$ 22,00</span>
<button>
<img src="./assets/img/cart-icon.png" alt="icone do carrinho" />
</button>
</div>
</li>
<!-- quarto produto -->
<li class="product">
<img src="./assets/img/frango_frito.png" alt="Kenzie Burgao" />
<h3 class="title-1">Frango Frito</h3>
<p class="text-caption color-grey-3">
Frango frito e crocante com molho especial
</p>
<div class="footer-products">
<span class="title-2">R$ 25,00</span>
<button>
<img src="./assets/img/cart-icon.png" alt="icone do carrinho" />
</button>
</div>
</li>
<!-- quinto produto -->
<li class="product">
<img src="./assets/img/batata_frita.png" alt="Kenzie Burgao" />
<h3 class="title-1">Batata Frita</h3>
<p class="text-caption color-grey-3">
Batata frita acompanhada de molho especial
</p>
<div class="footer-products">
<span class="title-2">R$ 15,00</span>
<button>
<img src="./assets/img/cart-icon.png" alt="icone do carrinho" />
</button>
</div>
</li>
<!-- sexto produto -->
<li class="product">
<img
src="./assets/img/sanduiche_frango_frito.png"
alt="Kenzie Burgao"
/>
<h3 class="title-1">Sanduíche com Frango Frito</h3>
<p class="text-caption">
Pão, frango frito e salada para acompanhar
</p>
<div class="footer-products">
<span class="title-2">R$ 20,00</span>
<button>
<img src="./assets/img/cart-icon.png" alt="icone do carrinho" />
</button>
</div>
</li>
</ul>
</section>
<!-- CARRINHO -->
<aside>
<!-- titulo do carrinho-->
<div class="flex header-carrinho">
<h4>Carrinho</h4>
</div>
<!--carrinho-->
<div class="carrinho">
<ul class="products-selected">
<li class="flex">
<div class="product-image">
<img
src="./assets/img/sanduiche_frango_frito.png"
alt="sanduiche frango frito"
/>
</div>
<div>
<div class="flex">
<h3 class="title-2 mini-descricao">
Sanduíche com Frango Frito
</h3>
<button class="trash-btn">
<img src="./assets/img/trash.png" alt="icone lixeira" />
</button>
</div>
<div class="footer-cart">
<p class="text-caption">R$ 20,00</p>
</div>
</div>
</li>
</ul>
<div class="totalizador">
<h4 class="title-3">Quantidade</h4>
<h4 class="title-3">4</h4>
</div>
<div class="totalizador">
<h4 class="title-3">Total</h4>
<h4 class="title-3">R$ 67,00</h4>
</div>
<button class="btn-finalizar-pedido">Realizar pedido</button>
</div>
</aside>
</main>
<script src="./assets/script/database.js"></script>
<script src="./assets/script/script.js"></script>
</body>
</html>