-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlamparas.html
161 lines (133 loc) · 6.97 KB
/
lamparas.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!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">
<title>e-commerce</title>
<!-- Google Api -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400&display=swap" rel="stylesheet">
<link rel="icon" href="./img/log-roque.png">
<link rel="stylesheet" href="./css/reset.css" type="text/css">
<link rel="stylesheet" href="./css/bases.css" type="text/css">
<link rel="stylesheet" href="./css/promociones.css" type="text/css">
<link rel="stylesheet" href="./css/header.css" type="text/css">
<link rel="stylesheet" href="./css/productos.css" type="text/css">
<link rel="stylesheet" href="./css/contacto.css" type="text/css">
<link rel="stylesheet" href="./css/footer.css" type="text/css">
<link rel="stylesheet" href="./css/login.css" type="text/css">
<link rel="stylesheet" href="./css/nuevoProducto.css" type="text/css">
<link rel="stylesheet" href="./css/allProductos.css" type="text/css">
<link rel="stylesheet" href="./css/detalleProducto.css" type="text/css">
<link rel="stylesheet" href="./css/off.css" type="text/css">
</head>
<body>
<header class="header container">
<div class="nav">
<img src="./img/log-roque.png" alt="logo e-commerce" class="nav__log">
<a class="nav__interaccion-home" href="./index.html"><span class="material-symbols-outlined">home</span></a>
</div>
</header>
<main class="main container">
<section class="allProductos container" id="allProductosSection">
<div class="allProductos__paneles">
<div class="allProductos__cabecera">
<p class="allProductos__titulo">Misma categoría</p>
</div>
<div class="allProductos__seleccion" id="allProductos"></div>
</div>
</section>
<section class="contacto container" id="contacto" >
<div class="contacto__container">
<div class="contacto__empresa">
<img src="./img/log-roque.png" alt="logo e-commerce" class="nav__log">
<div class="contacto__opciones">
<a href="#" class="contacto__detalle">Quienes somos</a>
<div class="contacto__mail">
<h4 class="contacto__mail-titulo">Email</h4>
<h5 class="contacto__mail-direccion">sebadalessandro@hotmail.com</h5>
<a href="mailto:sebadalessandro@hotmail.com" target="_blank">Envianos tu consulta</a>
</div>
<div class="contacto__whatsapp">
<h4 class="contacto__whatsapp-titulo">WhatsApp</h4>
<h5 class="contacto__whatsapp-numero">(+54) 9 280 458 3832</h5>
<a href="http://api.whatsapp.com/send?phone=5492804583832" target="_blank">Envíe un mensage</a>
</div>
</div>
</div>
<div class="contacto__formulario-container">
<p class="contacto__titulo">contacto</p>
<form action="https://formsubmit.co/sebadalessandro@hotmail.com" method="POST" class="contacto__formulario">
<div class="input-container">
<input
class="contacto__input"
id="name" type="text"
name="name"
placeholder="Nombre"
pattern="[\s\S]{0,40}"
required
data-tipo="nombre"
>
<span class="input-mensage-error"></span>
</div>
<br>
<div class="input-container">
<input
class="contacto__input"
id="email"
type="email"
name="email"
placeholder="E-mail"
required
data-tipo="email"
>
<span class="input-mensage-error"></span>
</div>
<br>
<div class="input-container">
<input
class="contacto__input"
id="subject"
type="text"
name="subject"
placeholder="Asunto"
required
data-tipo="asunto"
>
<span class="input-mensage-error"></span>
</div>
<br>
<textarea name="menssage" id="menssage" cols="30" rows="10" placeholder="Mensaje" class="contacto__input-textArea" required ></textarea>
<br>
<br>
<button class="contacto__boton boton"type="submit">Enviar</button>
<input
id="linkNext"
type="hidden"
name="_next"
value="https://sebadalessandro.github.io/porfolio-alura-challenge/"
>
<input
id="captcha"
type="hidden"
name="_captcha"
value="false"
>
</form>
</div>
</div>
</section>
</main>
<footer class="footer">
<p class="footer__titulo">Desarrollado por Sebastián D'Alessandro - 2022</p>
<div class="footer__links">
<a href="https://www.linkedin.com/in/sebadalessandro/" target="_blank"><img src="./img/linkedin-icon.png" alt="linkedin icon" class="footer__linkedin"></a>
<a href="https://github.com/SebaDAlessandro" target="_blank"><img src="./img/github-icon.png" alt="github icon" class="footer__github"></a>
</div>
</footer>
</body>
<script src="./js/pageInicio.js"></script>
<script type="module" src="./js/categoriaLamparas.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</html>