-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
29 lines (28 loc) · 865 Bytes
/
contacto.html
File metadata and controls
29 lines (28 loc) · 865 Bytes
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
---
layout: default
idSeccion: contacto
permalink: /contacto/
---
<div id="contacto-imagen" class="imagen-seccion">
<h2>Hablemos :)</h2>
<!-- <h2>▾</h2> -->
</div>
<div id="contacto">
<form id="forma-contacto" method="post" action="{{sitioURL}}/contactar">
<div class="contacto-renglon">
<div class="contacto-dato">
<h2>NOMBRE<span>*</span></h2>
<input name="nombre" placeholder="Escribe tu nombre" required/>
</div>
<div class="contacto-dato">
<h2>EMAIL<span>*</span></h2>
<input name="email" placeholder="Escribe tu email" required/>
</div>
</div>
<div class="contacto-textarea">
<h2>¿EN QUÉ PODEMOS AYUDARTE?<span>*</span></h2>
<textarea name="mensaje" placeholder="Escribe tu mensaje" required></textarea>
</div>
<input id="boton-contacto" class="boton" type="submit" value="Enviar datos"/>
</form>
</div>