-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (117 loc) · 4.18 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
<!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">
<meta property="og:url" content="https://crisledezma.github.io/Challenge-ONE-Front-End-Sprint-02-E-Commerce/"/>
<meta property="og:title" content="E-Commerce Alura Geek"/>
<meta property="og:image" content="./img/play-5.png" />
<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@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/main.css">
<title>E-Commerce - Alura Geek</title>
</head>
<body>
<header>
<div class="header-container">
<div class="logo-input">
<img src="./img/vector-logo.svg" alt="Logo Alura Geek" srcset="">
<input type="text" class="barra-busqueda" placeholder="¿Qué deseas buscar?">
</div>
<a href="./login.html"><button class="white-button" type="button">Login</button></a>
<img class="icono-buscar" src="./img/buscar-img.svg" alt="buscar">
</div>
</header>
<section class="banner-container">
<div class="banner-text">
<h2>Febrero Promocional</h2>
<h3>Productos seleccionados con 33% de descuento</h3>
<button class="blue-button" type="button">Ver Consolas</button>
</div>
</section>
<section class="section-productos starwars">
<div class="productos-container">
<div class="section-titulo-productos">
<h2 class="h2-productos">Star Wars</h2>
<div class="ver-todo">
<a href="./productos.html">
<h3>Ver todo</h3>
</a>
<i class="material-icons">arrow_forward</i>
</div>
</div>
<div id="starwars" class="productos-productos"></div>
</div>
</section>
<section class="section-productos consolas">
<div class="productos-container">
<div class="section-titulo-productos">
<h2 class="h2-productos">Consolas</h2>
<div class="ver-todo">
<a href="./productos.html">
<h3>Ver todo</h3>
</a>
<i class="material-icons">arrow_forward</i>
</div>
</div>
<div id="consolas" class="productos-productos"></div>
</div>
</section>
<section class="section-productos diversos">
<div class="productos-container">
<div class="section-titulo-productos">
<h2 class="h2-productos">Diversos</h2>
<div class="ver-todo">
<a href="./productos.html">
<h3>Ver todo</h3>
</a>
<i class="material-icons">arrow_forward</i>
</div>
</div>
<div id="diversos" class="productos-productos"></div>
</div>
</section>
<section class="section-footer">
<footer>
<div class="nav-container">
<img class="logo-alura" src="./img/vector-logo.svg" alt="Logo Alura Geek">
<div class="footer-nav">
<a href="#">
<p>Quienes Somos</p>
</a>
<a href="#">
<p>Política de Privacidad</p>
</a>
<a href="#">
<p>Programa de fidelidad</p>
</a>
<a href="#">
<p>Nuestras Tiendas</p>
</a>
<a href="#">
<p>Quiero ser franquiciado</p>
</a>
<a href="#">
<p>Anúncie aquí</p>
</a>
</div>
</div>
<div class="form-container">
<form>
<h2 class="form-title">Hable con nosotros</h2>
<input id="nombre" type="text" placeholder="Nombre">
<textarea name="mensaje" id="mensaje" cols="30" rows="5" placeholder="Escribe tu mensaje"></textarea>
<button class="blue-button" type="button">Enviar Mensaje</button>
</form>
</div>
</footer>
<div class="rodapie">Desarrollado por Cristian Ledezma 2022</div>
</section>
<script type="module" src="./js/main.js"></script>
</body>
</html>