-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
92 lines (75 loc) · 3.94 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
<!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="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/base.css">
<link rel="stylesheet" href="assets/css/header.css">
<link rel="stylesheet" href="assets/css/banner.css">
<link rel="stylesheet" href="assets/css/categorias.css">
<link rel="stylesheet" href="assets/css/redireccion.css">
<link rel="stylesheet" href="assets/css/footer.css">
<script src="https://kit.fontawesome.com/b95dc486b7.js" crossorigin="anonymous"></script>
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/img/favicon/site.webmanifest">
<title>Tryhard Zone</title>
</head>
<body>
<header class="sticky">
<div class="sticky__header">
<a href="index.html"><p class="header__logo"></p></a>
<div class ="headerB">
<div class="header__conjuntobusqueda">
<input class="header__buscador" type="text" placeholder="¿Que deseas buscar?">
</div>
<div class="busqueda"></div>
</div>
<i id ="lupa" class="fa-solid fa-magnifying-glass"></i>
</div>
</header>
<main data-main>
<section class="banner">
<div class="banner__contenido">
<h1 class="banner__titulo"></h1>
<p class="banner__descripcion">Productos seleccionados con descuentos</p>
<a href="#v"><div class="banner__boton">Ver videojuegos</div></a>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__contenido">
<p class="header__logo"></p>
<div class="footer__link">
<a href="https://laureanoc.github.io/Mi-portafolio/">Quienes somos</a>
<a href="#">Política de privacidad</a>
<a href="#">Programa de fidelidad</a>
<a href="#">Nuestras Tiendas</a>
<a href="#">Quiero ser franquiciado</a>
<a href="#">Anuncie aquí</a>
</div>
<form class="footer__formulario" action="https://formspree.io/f/xdobppoy"method="POST">
<p class="formulario__titulo">Hable con nosotros</p>
<div class="formulario__conjunto" id="cajan">
<label class="formulario__label"for="name">Nombre y Appelido</label>
<input name="name" type="text" class="formulario__nombre" id="nombre" placeholder="Laureano Neyén Chaves" required autocomplete="off">
</div>
<div class="formulario__conjunto" id="caja">
<textarea name="mensaje" id="mensaje" class="formulario__mensaje" placeholder="Escribe tu mensaje" required></textarea>
</div>
<button class="formulario__boton">Enviar</div>
</form>
</div>
</footer>
<div class="rodapie">Diseñado por <a class="yo" href="https://laureanoc.github.io/Mi-portafolio/">Laureano Neyén Chaves</a> 2022 ©</div>
<script src="validarLocation.js"></script>
<script type="module" src="estado/estado.js"></script>
<script type="module" src="estado/estadoMes.js"></script>
<script type ="module" src="estado/escucharBusqueda.js"></script>
<script type="module" src="controllers/Read.js"></script>
<script src="validarFormulario.js"></script>
</body>
</html>