-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategorias.html
119 lines (91 loc) · 4.02 KB
/
categorias.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="img/logoS.png" type="image/png">
<script src="https://kit.fontawesome.com/09b943e36e.js" crossorigin="anonymous"></script>
<title>Siman Categorías</title>
</head>
<body>
<div class="container">
<header class="header">
<nav class="header__nav">
<a href="#"><i class="fa-regular fa-user"></i></a>
<a href="#"><i class="fa-solid fa-cart-shopping"></i></a>
<a href="index.html">Inicio</a>
<a href="categorias.html">Categorias</a>
<a href="Promociones.html">Promociones</a>
</nav>
<img class="header__logo" alt="Siman logotipo" crossorigin="anonymous"
data-src="https://siman.vtexassets.com/assets/vtex.file-manager-graphql/images/cfd36ba9-4b77-4f49-84c3-9e2f9c363cc8___19999b42961a45dbb2f4293973939c0b.svg"
loading="lazy"
src="https://siman.vtexassets.com/assets/vtex.file-manager-graphql/images/cfd36ba9-4b77-4f49-84c3-9e2f9c363cc8___19999b42961a45dbb2f4293973939c0b.svg">
<section class="header__busqueda">
<input type="text" placeholder="Buscar">
<button><i class="fa-solid fa-magnifying-glass"></i></button>
</section>
</header>
<main class="main">
<section class="categorias">
<article class="box">
<section class="box__img">
<a href="#"><img src="img/s2.jpg" alt="Hombre"></a>
</section>
<h4>Hombre</h4>
</article>
<!--Fin-->
<article class="box">
<section class="box__img">
<a href="#"><img src="img/s3.jpg" alt="Mujer"></a>
</section>
<h4>Mujer</h4>
</article>
<!--Fin-->
<article class="box">
<section class="box__img">
<a href="#"><img src="img/s1.jpg" alt="Hombre"></a>
</section>
<h4>Teen</h4>
</article>
<!--Fin-->
<article class="box">
<section class="box__img">
<a href="#"><img src="img/s4.jpg" alt="Niños"></a>
</section>
<h4>Niños</h4>
</article>
<!--Fin-->
</section>
</main>
<footer class="footer">
<section class="footer__logo2">
<img src="img/logo siman 2.png" alt="siman logotipo">
</section>
<form class="footer__form">
<legend>Suscribete para obtener las mejores ofertas</legend>
<fieldset>
<input type="text" placeholder="Correo electrónico">
<button>Suscribirme</button>
</fieldset>
</form>
<section class="footer__options">
<a href="#">Siman corporativo</a>
<a href="#">Programas</a>
<a href="#">Servicio al cliente</a>
<a class="a-sin-borde" href="#"><i class="fa-solid fa-phone"></i> 2298-3777</a>
</section>
<section class="footer__redes">
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#"><i class="fa-brands fa-youtube"></i></a>
</section>
<section class="footer__copyright">
<p>Copyright © 2024 Almacenes Siman El Salvador. Reservados todos los derechos.</p>
</section>
</footer>
</div>
</body>
</html>