-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (152 loc) · 5.89 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!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>AluraGeek</title>
<link rel="icon" href="./img/Logo_Geek.svg" />
<link rel="stylesheet" href="css/Bases/reset.css" />
<link rel="stylesheet" href="css/Bases/main.css" />
<link rel="stylesheet" href="css/estilos/encabezado.css" />
<link rel="stylesheet" href="css/estilos/buscar.css" />
<link rel="stylesheet" href="css/estilos/input-boton.css" />
<link rel="stylesheet" href="css/estilos/noticias.css" />
<link rel="stylesheet" href="css/estilos/prodcutos.css" />
<link rel="stylesheet" href="css/estilos/ver-productos.css" />
<link rel="stylesheet" href="css/estilos/rodapie.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header class="encabezado">
<a href="index.html" class="container__titulo">
<img src="img/Logo_Geek.svg" alt="" />
<h1><strong>Alura</strong>Geek</h1>
</a>
<div class="container__buscar">
<fieldset>
<form action="#" method="get" class="buscar__form">
<input
type="texte="
class="input-text"
placeholder="¿Qué deseas buscar?"
/>
<input type="submit" class="input-buscar" value="" />
<i class="buscar"></i>
</form>
</fieldset>
</div>
<div class="container__input-login">
<a class="boton-login" href="login.html">Login</a>
</div>
</header>
<main class="main">
<section class="noticias">
<div class="noticias__banner">
<h2>Abril Promocional</h2>
<p>Productos selecionados con 33% de descuento</p>
<a href="" class="ver-consolas">Ver consolas</a>
</div>
</section>
<section class="productos">
<div class="productos__tipo">
<div class="ver-productos__lista">
<div class="ver-productos__header">
<h2>Todos los prodcutos</h2>
<a href="agregarProducto.html">Agregar prodcuto</a>
</div>
<div class="ver-productos__todos">
<ul class="producto__card" id="producto__card__todos"></ul>
</div>
</div>
<div class="ver-productos__categoria">
<div class="producto-card__star-wars">
<div class="producto__head">
<h3>Star Wars</h3>
<button class="bnt-ver-todo" id="btnvertodo1">Ver todo →</button>
</div>
<ul class="producto__card" id="producto__card__star-wars"></ul>
</div>
<div class="producto-card__consolas">
<div class="producto__head">
<h3>Consolas</h3>
<button class="bnt-ver-todo" id="btnvertodo2">Ver todo →</button>
</div>
<ul class="producto__card" id="producto__card__consolas"></ul>
</div>
<div class="producto-card__otros">
<div class="producto__head">
<h3>Otros</h3>
<button class="bnt-ver-todo" id="btnvertodo3">Ver todo →</button>
</div>
<ul class="producto__card" id="producto__card__otros"></ul>
</div>
</div>
</div>
</section>
</main>
<footer class="rodapie">
<div class="rodapie__footer">
<div class="rodapie__descripcion">
<div class="rodapie__logo">
<a href="index.html" class="rodapie__titulo">
<img src="img/Logo_Geek.svg" alt="" />
<h1><strong>Alura</strong>Geek</h1>
</a>
</div>
<div class="rodapie__enlaces">
<a href="#">Quienes somos</a>
<a href="#">Política de privacidad</a>
<a href="#">Política de privacidad</a>
<a href="#">Nuestras Tiendas</a>
<a href="#">Quiero ser franquiciado</a>
<a href="#">Anúncie aquí</a>
</div>
</div>
<div class="rodapie__contacto">
<h4>Hable con nosotros</h4>
<form class="contacto__form" action="">
<div class="contenedor__input">
<input
type="text"
name="name"
placeholder="Nombre"
required
data-tipo="nombre"
minlength="4"
maxlength="50"
size="10"
/>
<label class="input-label" for="name">Nombre</label>
<span class="input-message-error">Este campo no es valido</span>
</div>
<div class="contenedor__input">
<textarea
name="mensaje"
id="mensajem"
class="mensajem"
cols="40"
rows="5"
placeholder="Escribe tu mensaje"
required
data-tipo="mensaje"
></textarea>
<label class="input-label" for="mensaje"
>Escribe tu mensaje</label
>
<span class="input-message-error">Este campo no es valido</span>
</div>
<button type="submit" class="btn__enviar">Enviar mensaje</button>
</form>
</div>
</div>
<div class="rodapie__autor">
<h4>Desarrollado por Jorge Sanchez</h4>
<p>2023</p>
</div>
</footer>
<script type="module" src="app.js"></script>
<script type="module" src="controllers/crearCards.js"></script>
<script type="module" src="controllers/verTodo.js"></script>
</body>
</html>