-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcarrinho.html
More file actions
129 lines (128 loc) · 4.9 KB
/
carrinho.html
File metadata and controls
129 lines (128 loc) · 4.9 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
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carrinho - Vitale</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" href="2favicon-32x32.png" type="image/png">
<style>
body {
font-family: 'Montserrat', sans-serif;
}
.navbar-brand {
font-weight: 700;
color: #000000;
}
.navbar-brand:hover {
color: #ff4500;
}
.btn-orange {
background-color: #ff7f50;
color: white;
}
.btn-orange:hover {
background-color: #ff4500;
}
footer {
background-color: #343a40;
color: white;
padding: 20px 0;
text-align: center;
}
.table thead {
background-color: #ff7f50;
color: white;
}
.table tbody tr:hover {
background-color: #f8f9fa;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light shadow-sm">
<div class="container">
<a class="navbar-brand" href="index.html">VITALE</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Início</a>
</li>
<li class="nav-item">
<a class="nav-link" href="produtos.html">Produtos</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Carrinho</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cadastro.html">Cadastro</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-5">
<h2 class="text-center mb-4">Carrinho de Compras</h2>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Produto</th>
<th>Preço Unitário</th>
<th>Quantidade</th>
<th>Total</th>
<th>Ação</th>
</tr>
</thead>
<tbody>
<tr>
<td>Adidas Forum Low Azul</td>
<td>R$ 699,90</td>
<td>
<input type="number" class="form-control" value="1" min="1" style="width: 80px;">
</td>
<td>R$ 699,90</td>
<td>
<button class="btn btn-danger btn-sm">Remover</button>
</td>
</tr>
<tr>
<td>Nike Air Max SC Laranja</td>
<td>R$ 499,99</td>
<td>
<input type="number" class="form-control" value="1" min="1" style="width: 80px;">
</td>
<td>R$ 499,99</td>
<td>
<button class="btn btn-danger btn-sm">Remover</button>
</td>
</tr>
<tr>
<td>New Balance 1000 Verde</td>
<td>R$ 1.099,99</td>
<td>
<input type="number" class="form-control" value="1" min="1" style="width: 80px;">
</td>
<td>R$ 1.099,99</td>
<td>
<button class="btn btn-danger btn-sm">Remover</button>
</td>
</tr>
</tbody>
</table>
</div>
<div class="d-flex justify-content-between align-items-center mt-4">
<h4>Total: <span>R$ 2.299,88</span></h4>
<button class="btn btn-orange btn-lg">Finalizar Compra</button>
</div>
</div>
<footer class="mt-5">
<p>© 2025 Vitale. Todos os direitos reservados.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>