-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (78 loc) · 3.95 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
<html lang="en">
<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">
<!-- Css style sheet reference -->
<link rel="stylesheet" href="../styles/basic.css">
<link rel="stylesheet" href="..styles/reset.css">
<link rel="stylesheet" href="../styles/menu/menu.css">
<link rel="stylesheet" href="../styles/hero/hero.css">
<link rel="stylesheet" href="../styles/products/products.css">
<link rel="stylesheet" href="../styles/footer/footer.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap" rel="stylesheet">
<title>AluraGeek | Home</title>
</head>
<body>
<main>
<div class="all">
<header>
<!-- Sección del Menú -->
<section id="menu__container">
<div id="menu__logo-input_container">
<div id="menu__logo_container">
<img src="../assets/sports_esports_black_24dp 1.png" alt="AluraGeek Logo" id="menu__logo">
<img src="../assets/Texto.png" alt="AluraGeek" id="menu__text">
</div>
<input id="header__search-input" type="text" id="search" placeholder="¿Qué deseas buscar?"></input>
</div>
<nav>
<a href="./screens/login.html" id="menu__btn"><div id="menu__btn_text" type="submit" >Login</div></a>
</nav>
</section>
</header>
<section id="hero__container">
<div id="hero__background" >
<h1 id="hero__title">Febrero Promocional</h1>
<h3 id="hero__subtitle">Productos selecionados con 33% de descuento</h2>
<div><button id="hero__btn">Ver consolas</button></div>
</div>
</section>
<section id="products__container">
<h2 class="products__title">Star Wars</h2>
<div id="products__items_container" data-product>
</div>
</section>
<footer id="footer__container_main">
<div id="footer__container">
<div id="footer__logo">
<img src="../assets/sports_esports_black_24dp 1.png" alt="AluraGeek Logo" id="menu__logo">
<img src="../assets/Texto.png" alt="AluraGeek" id="menu__text">
</div>
<div id="footer__info_container"><h4 id="footer__info">Somos apasionados por la cultura Geek, por eso nos encontramos siempre buscando los mejores productos de calidad para personas tan apasionadas como nosotros</h4>
</div>
<div id="footer__form_container">
<h4>Hable con nosotros</h4>
<form id="footer__form-container">
<div class="form__group field">
<input class="form__field" type="input" placeholder="Nombre" name="name" id="name" required>
<label class="form__label" for="name">Nombre</label>
</div>
<div class="form__group field">
<textarea class="form__field" type="input" placeholder="Escribe tu mensaje" id="text" name="text" required></textarea>
<label class="form__label" for="text">Escribe tu mensaje</label>
</div>
<button type="submit" class="form__contact__btn">Enviar mensaje</button>
</form>
</div>
</div>
<div id="footer__last_container">
<p>Desarrollado por Cecilia Barboz</p>
<p>2023</p>
</div>
</footer>
</div>
</main>
<script src="../services/products-services.js" defer type="module"></script>
</body>
</html>