-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
98 lines (90 loc) · 3.08 KB
/
checkout.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Compra - Coffee Shop</title>
<link href="css/reset.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<nav>
<div class="navbar">
<img
src="https://img.freepik.com/free-vector/coffee-shop-badge-vintage-style_1176-95.jpg?w=900&t=st=1685207991~exp=1685208591~hmac=d4e751dedf960fa5ae36d7c2203e72882e34699b80eaa4c7ff275eeeb5d639cb"
/>
<section>
<a href="./index.html"> Home </a>
<a href="./info-pedidos.html"> Cardápio </a>
<a href=""> Contatos </a>
<a href=""> Sobre Nós </a>
<a class="pedido" href="./checkout.html"> Fazer Pedido </a>
</section>
</div>
</nav>
</header>
<main class="main-checkout">
<div class="escolha-User">
<img
class="img-escolha-User"
src="./img/WhatsApp Image 2023-05-28 at 1.58.09 PM.jpeg"
/>
<section id="user-choice">
<div style="display: flex" class="tipo-pedido">
<label for="cafeexpresso">Café Expresso</label>
<p>13,00</p>
<input type="number" name="cafeexpresso" id="cafe" min="0" />
</div>
<div style="display: flex" class="tipo-pedido">
<label for="bombom-cafe">Bombons de Café</label>
<p>23,00</p>
<input type="number" name="bombom-cafe" id="bombom-cafe" min="0" />
</div>
<div style="display: flex" class="tipo-pedido">
<label for="cafe-chocolate">Chocolate de Café</label>
<p>83,00</p>
<input
type="number"
name="cafe-chocolate"
id="cafe-chocolate"
min="0"
/>
</div>
<div style="display: flex" class="tipo-pedido">
<label for="cupuacu-cafe">Cupuaçu de Café</label>
<p>133,00</p>
<input
type="number"
name="cupuacu-cafe"
id="cupuacu-cafe"
min="0"
/>
</div>
<div class="finalizar-pedido">
<button onclick="Calculo()">Finalizar Pedido</button>
</div>
<div id="final">
<div id="final-pedido-calculo">
<p>Total a pagar:</p>
</div>
<div class="Desconto" id="Desconto" role="alert"></div>
</div>
</section>
</div>
</main>
<footer>
<section class="footer-a">
<a>Instagram</a>
<a>Facebook</a>
<img
class="footer-img"
src="https://img.freepik.com/free-vector/coffee-shop-badge-vintage-style_1176-95.jpg?w=900&t=st=1685207991~exp=1685208591~hmac=d4e751dedf960fa5ae36d7c2203e72882e34699b80eaa4c7ff275eeeb5d639cb"
/>
<a>Localização</a>
<a>E-mail</a>
</section>
</footer>
<script src="script.js"></script>
</body>
</html>