-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo-producto.html
96 lines (84 loc) · 2.72 KB
/
info-producto.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
<!DOCTYPE html>
<html lang ="ES">
<head>
<meta charset="UFT-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="style.css">
<link rel="stylesheet" href="edit-product.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500&display=swap">
<title>Alura Geek</title>
</head>
<body>
<header class="cabecera">
<nav>
<div class="logo-busqueda">
<a class="ver-produto" href="../index.html">
<div class="logo">
<img src="../assets/logo.png" alt="logo" />
<p class="logo-azul">Alura</p>
<p>Geek</p>
</div>
</a>
<input i type="text" placeholder="Qué deseas buscar?" />
</div>
</nav>
</header>
<section class="geral-products">
<div class="products_title"></div>
<main>
<section class="prod-seleccionado" data-prod-seleccionado >
</section>
<!--<div class="prod-sel-similares">
<h2>Productos Similares</h2>
</div>
<section class="productos" data-producto-similares>
</section>-->
</main>
<script type="module" src="/controllers/detalle-controller.js"></script>
</body>
<footer>
<section class="contacto">
<div class="referencia">
<img src="../assets/logo.png" alt="logo" />
<p>Alura</p>
<p>Geek</p>
</div>
<div class="links-utiles">
<a href="">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>
<div class="form">
<p>Hable con nosotros</p>
<div class="label-float">
<input
type="text"
name="Nome"
id="Nome"
class="input-nome"
placeholder=""
/>
<label for="Nome" class="label-nome">Nombre</label>
</div>
<textarea
name="mensagem"
id="msg"
cols="5"
rows="5"
placeholder="Escriba sua Mensage"
></textarea>
<button>Enviar Mensaje</button>
</div>
</section>
</footer>
<rodapie class="rodapie">
<P>Designed by Miyer Gonzalez</P>
<p>2023</p>
</rodapie>
</html>