-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarrinho.html
More file actions
65 lines (51 loc) · 1.93 KB
/
carrinho.html
File metadata and controls
65 lines (51 loc) · 1.93 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carrinho - Lilac Beauty</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<div class="navbar-container">
<a href="index.html" class="logo">
<img src="https://i.pinimg.com/736x/e0/0f/2a/e00f2af7f7c453ce9c75b028c4034449.jpg" alt="Lilac Beauty Logo">
</a>
<h1 class="site-title">Lilac Beauty</h1>
<nav class="nav-center">
<ul class="nav-links">
<li><a href="index.html">Início</a></li>
<li><a href="produtos.html">Produtos</a></li>
<li><a href="sobre.html">Sobre Nós</a></li>
<li><button id="dark-mode-btn" class="dark-mode-toggle">🌙 Modo Escuro</button></li>
<li><a href="carrinho.html">🛒 Carrinho</a></li>
<li><a href="favoritos.html">❤ Favoritos</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="vitrine">
<h1>Seu Carrinho 🛒</h1>
<button id="remover-selecionados">Remover selecionados</button>
<a href="checkout.html" class="btn-finalizar">Finalizar compra</a>
<div id="carrinho-container" class="card-container"></div>
</section>
</main>
<footer class="footer-completo">
<div class="footer-newsletter">
<h2>JUNTE-SE A NÓS</h2>
<p>Obtenha descontos exclusivos</p>
<form>
<input type="text" placeholder="Nome" required>
<input type="email" placeholder="E-mail" required>
<button type="submit">QUERO ME INSCREVER</button>
</form>
</div>
</footer>
<script src="js/carrinho.js"></script>
<script src="js/darkmode.js"></script>
<script src="js/newsletter.js"></script>
</body>
</html>