-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
101 lines (99 loc) · 5.28 KB
/
home.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Materialize</title>
<link rel="icon" href="./fotos/favicon.ico">
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<script type="module" src="./js/listProductHome.js"></script>
<script src="/js/addCartItem.js"></script>
</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">
<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>
</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="main">
<div class="anuncio">
<img src="./fotos/banner1.png" alt="anuncio">
</div>
<div class="produtros">
<div class="border-produto">
<a href="filterProduct.html?categoria=escrita" title="lapis/caneta"> <img src="./fotos/pen.svg" width="50" height="50" ></a>
</div>
<div class="border-produto">
<a href="filterProduct.html?categoria=bloco de Escrita" title="livro/caderno"><img src="./fotos/book.svg" width="50" height="50" ></a>
</div>
<div class="border-produto">
<a href="filterProduct.html?categoria=escritorio" title="grampiador/clipe"><img src="./fotos/paste.svg" width="50" height="50"></a>
</div>
<div class="border-produto">
<a href="filterProduct.html?categoria=transporte " title="mochilas/bolsas"><img src="./fotos/back.svg" width="50" height="50"></a>
</div>
<div class="border-produto">
<a href="filterProduct.html?categoria=arte" title="arte/tint/pinceis"><img src="./fotos/pallete.svg" width="50" height="50"></a>
</div>
</div>
<p class="Mensage">Encontrar produtos rapidamente e com facilidade !❤️</p>
<div id="product-list" class="listaze-produc">
</div>
</main>
<footer class="rodape">
<div class="caixa">
<div class="row">
<div class="col-md-4">
<h4>Informações</h4>
<ul class="infor-list">
<li class="link-infor" ><a class="link-infor" href="#">Política de privacidade</a></li>
<li class="link-infor" ><a class="link-infor" href="#">Termos e condições de uso</a></li>
<li class="link-infor" ><a class="link-infor" href="#">Envio e devolução</a></li>
</ul>
</div>
<div class="col-md-4">
<h4>Contato</h4>
<ul class="infor-list">
<li class="link-infor"><a class="link-infor" href="#">Telefone: (11) 1234-5678</a></li>
<li class="link-infor" ><a class="link-infor" href="#">E-mail: contato@materiaisescolares.com.br</a></li>
<li class="link-infor" ><a class="link-infor" href="#">Endereço: Rua das Escolas, 123, São Paulo - SP</a></li>
</ul>
</div>
<div class="col-md-4">
<h4>Redes Sociais</h4>
<ul class="infor-list">
<li class="link-infor" ><a class="link-infor" href="#"><i class="fab fa-facebook"></i> Facebook</a></li>
<li class="link-infor" ><a class="link-infor" href="#"><i class="fab fa-twitter"></i> Twitter</a></li>
<li class="link-infor" ><a class="link-infor" href="#"><i class="fab fa-instagram"></i> Instagram</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>© 2023 Materiais Escolares. Todos os direitos reservados.</p>
</div>
</div>
</div>
</footer>
</body>
</html>