-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescription.html
95 lines (90 loc) · 4.5 KB
/
description.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
<!DOCTYPE html>
<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">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<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@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="assets/css/menu.css">
<link rel="stylesheet" href="assets/css/product.css">
<link rel="stylesheet" href="assets/css/rodapie.css">
<link rel="stylesheet" href="assets/css/footer.css">
<link rel="stylesheet" href="assets/css/login.css">
<link rel="stylesheet" href="assets/css/description.css">
<title>Tienda Alura</title>
</head>
<body>
<div>
<section class="menu">
<header class="menu_header">
<a class="menu_image" href="index.html">
<img src="assets/img/logo.png" alt="Logo mando de consola">
<img src="assets/img/Alura.png" alt="Alura">
<img src="assets/img/Geek .png" alt="Geek">
</a>
<div class="menu_search">
<div class="menu_input">
<input type="search" placeholder="Search" value="" data-search>
<a id="send" href=""><i class="fa fa-search"></i></a>
</div>
</div>
<div class="menu_login">
<a class="menu_login--login" href="login.html">Login</a>
<a class="menu_login--admin" href="admin.html">Administrador</a>
</div>
</header>
</section>
<section class="description">
<div data-descripcion></div>
<section class="product">
<div class="product_div">
<h1 class="product_title">Productos similares</h1>
</div>
<div class="product_list" data-relacionados></div>
</section>
</section>
<section class="rodapie">
<div class="rodapie_image">
<img src="assets/img/logo.png" alt="Logo mando de consola">
<img src="assets/img/Alura.png" alt="Alura">
<img src="assets/img/Geek .png" alt="Geek">
</div>
<div class="rodapie_links">
<ul>
<li class="rodapie_item"><a href="">¿Quénes somos?</a></li>
<li class="rodapie_item"><a href="">Política de privacidad</a></li>
<li class="rodapie_item"><a href="">Programa de fidelidad</a></li>
<li class="rodapie_item"><a href="">Nuestras tiendas</a></li>
<li class="rodapie_item"><a href="">Quiero ser franquiciado</a></li>
<li class="rodapie_item"><a href="">Anuncie aquí</a></li>
</ul>
</div>
<form class="rodapie_contact">
<p class="rodapie_title">Hable con nosotros</p>
<div>
<input class="rodapie_input" type="text" id="nombre" placeholder="Nombre" name="nombre" required maxlength="40" data-tipo="nombre" data-consulta>
<label class="input-label" for="nombre">Nombre</label>
<span class="input-message-error"></span>
</div>
<div>
<textarea class="rodapie_input rodapie_textarea" name="mensaje" id="mensaje" cols="5" placeholder="Escribe tu mensaje" required maxlength="120" data-tipo="mensaje" data-consulta></textarea>
<label class="input-label--textarea" for="mensaje">Escribe tu mensaje</label>
<span class="input-message-error"></span>
</div>
<button class="rodapie_button" type="submit">Enviar mensaje</button>
</form>
</section>
<section class="footer">
<p>Desarrollado por Matias Bergamaschi</p>
<p>2022</p>
</section>
</div>
<script type="module" src="scripts.js"></script>
<script type="module" src="controllers/description-controller.js"></script>
</body>
</html>