-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (103 loc) · 3.41 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
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="./Assets/consolas-01.png"
type="image/x-icon"
/>
<title>Home</title>
<link rel="stylesheet" href="./src/css/styles.css" />
<link rel="stylesheet" href="./src/css/01-home/home-main.css" />
</head>
<body>
<header class="cabecera box-shadow-1">
<a href="./index.html">
<img class="cabecera__logo" src="./Assets/Logo.png" alt="logo" />
</a>
<form class="cabecera__buscador box-shadow-1" action="">
<input
class="cabecera__buscador--input"
type="search"
placeholder="¿Qué deseas buscar?"
name=""
id=""
/>
</form>
<a class="cabecera__btn" href="./login.html">
<button class="btn">Login</button>
</a>
</header>
<main>
<section class="banner">
<h2 class="banner__tiulo">Agosto Promocional</h2>
<p class="banner__text">Productos seleccionados con 33% de descuento</p>
<a href="#consolas">
<button class="banner__btn btn">Ver consolas</button>
</a>
</section>
<section class="container">
<div class="container__title">
<h3 class="container__title--titulo">Productos</h3>
<a class="container__title--btn" href="./login.html">
<button class="btn">Menú Administrador</button>
</a>
</div>
<div class="container__contenido" data-productos>
<!-- -->
</div>
<div id="consolas"></div>
</section>
</main>
<footer class="rodapie">
<section class="rodapie__nosotros box-shadow-1">
<img src="./Assets/Logo.png" alt="logo" />
<ul class="rodapie__nosotros--list">
<li><a href="#">Quienes somos</a></li>
<li><a href="#">Politica de privacidad</a></li>
<li><a href="#">Programa de fidelidad</a></li>
<li><a href="#">Nuestras tiendas</a></li>
<li><a href="#">Quiero ser franquiciado</a></li>
<li><a href="#">Anúncie aquí</a></li>
</ul>
<form class="rodapie__nosotros--form" action="">
<strong for="nombre">Hable con nosotros</strong>
<input
placeholder="Nombre"
type="text"
name="nombre"
id="nombre"
pattern="^[A-Za-zÑñÁáÉéÍíÓóÚúÜü\s]+$"
required
/>
<textarea
placeholder="Escribe tú mensaje"
name=""
id=""
cols="21"
rows="7"
required
></textarea>
<input class="btn" type="submit" value="Enviar Mensaje" />
</form>
</section>
<section class="rodapie__derechos">
<h4>Desarrollado por ©Exequiel Gerez | 2022</h4>
</section>
</footer>
<script
type="module"
src="./src/js/controllers/crearProducto-controller.js"
></script>
<script src="./src/js/busqueda.js"></script>
</body>
</html>