-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarrinho.html
54 lines (51 loc) · 2.57 KB
/
carrinho.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link rel="icon" href="./fotos/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Materialize</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header class="header">
<nav class="nav-bar">
<a href="/home.html">
<img class="nav-logo" src="./fotos/LogoSample_ByTailorBrands (1).jpg" width="60" height="60" />
</a>
<div class="nav-search">
<form class="">
<div class="input-group">
<input type="text" placeholder="Busque seu material..."/>
<button>
<svg xmlns="http://www.w3.org/2000/svg" height="1.5em" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>
</button>
</div>
</form>
</div>
<div class="nav-icons">
<a href="escolas.html"><img src="./fotos/escola.svg" width="32" height="32" title="escolas cadastrada"/></a>
<a href="login.html"><img src="./fotos/person.svg" width="32" height="32" title="perfil"/> </a>
<a href="carrinho.html"><img src="./fotos/carinho.svg" width="32" height="32"/></a>
<a href="endereço.html">
<img src="./fotos/location.svg" width="32" height="32" />
</a>
<a href="convecer.html"><img src="./fotos/work.svg" width="32" height="32" title="trabalhe conosco"></a>
</div>
</nav>
</header>
<main class="principal">
<div class="container-carrinho">
<h1>carrinho de compras</h1>
<ul class="carrinhoLista" id="product-list">
</ul>
<div class="quantify-value">
<p>Total: R$ <span id="totalCarrinho">0.00</span></p>
<button class="btn-pagar-conta" onclick="IrparaPaginaPagsamento()">pagamento</button>
</div>
</div>
</main>
<script src="/js/listCart.js"></script>
<script src="./js/carrinho.js"></script>
</body>
</html>