-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (99 loc) · 4.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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Alura Geek</title>
<link rel="stylesheet" href="src/css/reset.css">
<link rel="stylesheet" href="src/css/styles.css">
<link rel="stylesheet" href="src/css/header.css">
<link rel="stylesheet" href="src/css/hero-section.css">
<link rel="stylesheet" href="src/css/tienda.css">
<link rel="stylesheet" href="src/css/footer.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&family=Poppins&family=Raleway:wght@200;400;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header container">
<section class="logo__section">
<img src="src/images/logo.svg" alt="" class="logo__joystick">
<img src="src/images/alura.svg" alt="" class="logo">
<img src="src/images/geek.svg" alt="" class="logo">
</section>
<a href="/login.html" class="nav__btn" id="login">Login</a>
<div class="search">
<input type="search" class="search-bar hidden" placeholder="¿Qué deseas buscar?" data-search>
<button class="search-btn" data-search-btn><img src="src/images/lupa.svg"></button>
</div>
<button class="false-search-btn hidden"><img src="src/images/lupa.svg"></button>
<button class="cancel-search hidden">X</button>
</header>
<main>
<section class="hero">
<h1 class="hero__titulo">Febrero Promocional</h1>
<p class="hero__texto">Productos seleccionados con 33% de descuento</p>
<a href='#consolas' class="hero__btn">Ver Consolas</a>
</section>
<section class="tienda container">
<div class="tienda__encabezado">
<h2 class="tienda__titulo">Star Wars</h2>
<div class="tienda__ver-todo">
<h3 class="ver-todo"><a href="/products.html">Ver todo</a></h3>
<img src="src/images/arrrow.svg" alt="" class="ver-todo__arrow">
</div>
</div>
<section class="product__store" id='starwars' data-store>
</section>
<div class="tienda__encabezado">
<h2 class="tienda__titulo">Consolas</h2>
<div class="tienda__ver-todo">
<h3 class="ver-todo"><a href="/products.html">Ver todo</a></h3>
<img src="src/images/arrrow.svg" alt="" class="ver-todo__arrow">
</div>
</div>
<section class="product__store" id="consolas" data-store>
</section>
<div class="tienda__encabezado">
<h2 class="tienda__titulo">Diversos</h2>
<div class="tienda__ver-todo">
<h3 class="ver-todo"><a href="/products.html">Ver todo</a></h3>
<img src="src/images/arrrow.svg" alt="" class="ver-todo__arrow">
</div>
</div>
<section class="product__store" id="diversos" data-store>
</section>
</section>
</main>
<footer>
<div class="logo-and-form">
<section class="logo-y-enlaces container">
<section class="logo__footer">
<img src="src/images/logo.svg" alt="" class="logo__joystick-footer">
<img src="src/images/alura.svg" alt="" class="logo-alura">
<img src="src/images/geek.svg" alt="" class="logo-geek">
</section>
<ul class="enlaces__footer">
<li><a>Quienes Somos</a></li>
<li><a>Politica de Privacidad</a></li>
<li><a>Programa de Fidelidad</a></li>
<li><a>Nuestras tiendas</a></li>
<li><a>Quiero ser franquiciado</a></li>
<li><a>Anúncie aquí</a></li>
</ul>
</section>
<form class="contacto container">
<legend id="contacto-legend">Hable con nosotros</legend>
<input name="name" type="text" id="input-nombre" placeholder="Escribe tu nombre" required minlength="3" maxlength="50">
<textarea name="" id="mensaje" cols="30" rows="6" placeholder="Escribe tu mensaje" required maxlength="240"></textarea>
<input type="submit" value="Enviar mensaje" id="submit"/>
</form>
</div>
<section class="datos-desarrollador">
<p>Desarrollado por Federico Manuel Maximovicz</p>
<p>© 2022</p>
</section>
</footer>
<script src="src/javascript/nav-buttons.js"></script>
<script type="module" src="src/javascript/controllers/producto-controller.js"></script>
<script src="src/javascript/search.js"></script>
</body>
</html>