-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (111 loc) · 5.47 KB
/
index.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
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MiniStore</title>
<!-- Font Raleway -->
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap" rel="stylesheet">
<!--Style sheets-->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/header/logo.css">
<link rel="stylesheet" href="css/header/menu.css">
<link rel="stylesheet" href="css/header/banner.css">
<link rel="stylesheet" href="css/main/category.css">
<link rel="stylesheet" href="css/main/contacto.css">
<link rel="stylesheet" href="css/footer/footer.css">
</head>
<body>
<!--Header-->
<header>
<ul class="header__menu">
<li class="header__list">
<a href="#" class="logo-store">
<img src="assets/icons/gift2.svg" alt="Logo de la tienda" class="logo__img">
<h1 class="logo__title">Mini <span>Store</span></h1>
</a>
</li>
<li class="header__list search-bar">
<input type="text" placeholder="¿Qué desea buscar?" class="header__search-input" maxlength="50" data-search>
<img src="assets/icons/search1.svg" alt="Ícono buscar" class="header__search-img" data-search-btn>
</li>
<li class="header__list">
<a href="login-register.html" class="header__login boton">Login</a>
</li>
</ul>
<!--Banner-->
<figure class="banner">
<h2 class="banner__title">Promociones de Navidad</h2>
<p class="banner__text">Productos con el 25% de descuento</p>
<a href="#3" class="banner__button boton">Ver Juguetes</a>
</figure>
</header>
<main>
<section class="category">
<div class="category__title" id="1">
<h2 class="category__title-text">Ropa para niño y niña</h2>
<a href="category.html?cat=1" class="category__title-next">
Ver todo
<img src="assets/icons/next-arrow1.svg" alt="Flecha" class="category__title-arrow">
</a>
</div>
<!--Container for the HTML code inyected with JS: Category: KIDS-->
<ul class="category__list" data-list></ul>
<div class="category__title" id="2">
<h2 class="category__title-text">Ropa dama y caballero</h2>
<a href="category.html?cat=2" class="category__title-next">
Ver todo
<img src="assets/icons/next-arrow1.svg" alt="Flecha" class="category__title-arrow">
</a>
</div>
<!--Container for the HTML code inyected with JS: Category: KIDS-->
<ul class="category__list" data-list></ul>
<div class="category__title" id="3">
<h2 class="category__title-text">Juguetes</h2>
<a href="category.html?cat=3" class="category__title-next">
Ver todo
<img src="assets/icons/next-arrow1.svg" alt="Flecha" class="category__title-arrow">
</a>
</div>
<!--Container for the HTML code inyected with JS: Category: KIDS-->
<ul class="category__list" data-list></ul>
</section>
<section class="contacto">
<div class="contacto__inf">
<a href="#" class="logo-store">
<img src="assets/icons/gift2.svg" alt="Logo de la tienda" class="logo__img">
<h1 class="logo__title">Mini <span>Store</span></h1>
</a>
<ul class="contacto__list">
<li class="contacto__list__links"><a href="#">Quiénes somos</a></li>
<li class="contacto__list__links"><a href="#">Política de privacidad</a></li>
<li class="contacto__list__links"><a href="#">Programa de fidelidad</a></li>
<li class="contacto__list__links"><a href="#">Nuestras tiendas</a></li>
<li class="contacto__list__links"><a href="#">Pagos</a></li>
<li class="contacto__list__links"><a href="#">Envíos</a></li>
</ul>
</div>
<form action="" class="contacto__form">
<h3 class="contacto__form-title">Hable con nosotros</h3>
<input type="text" placeholder="Nombre" data-form="nombreContacto" required maxlength="40">
<textarea type="text" placeholder="Escriba su mensaje" rows="5" cols="40" data-form="mensajeContacto" required maxlength="120"></textarea>
<button type="submit" class="contacto__form-button boton" data-form-btnContact>Enviar mensaje</button>
</form>
</section>
</main>
<footer>
<section class="footer__text">
<p>Desarrollado por Jessica Trejo</p>
<p>2022</p>
</section>
</footer>
<!-------------------------------------------------->
<!--Script to connect JSON-Server and execute AJAX-->
<!-------------------------------------------------->
<script type="module" src="js/controllers/categoriesList-controller.js"></script>
<!--Validate functions-->
<script src="js/validate-form.js"></script>
</body>
</html>