-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
54 lines (54 loc) · 1.76 KB
/
Copy pathcontacto.html
File metadata and controls
54 lines (54 loc) · 1.76 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Rulo GM | Contacto</title>
<link rel="stylesheet" type="text/css" href="./css/contact.css">
</head>
<body>
<div class="description">
<h1 class="bigtitle">¡Contáctame hoy!</h1>
</div>
<div class="contacts">
<div class="forma">
<form method="post" action="#" name="forma">
<fieldset>
<legend>Dime acerca de ti...</legend>
<div class="datos">
<label for="nomus">Nombre</label><br>
<input type="text" id="nomus" name="nombre" required="required"><br>
<label for="whats">WhatsApp! </label><br>
<input type="text" id="whats" name="wasap" required="required"><br>
<label for="serv">¿Qué servicio requieres?</label><br>
<input list="servicios" name="services" id="serv" required="required"><br>
<datalist id="servicios">
<option>Desarrollo web</option>
<option>Interpretación musical</option>
<option>Canto e interpretación musical</option>
<option>Reuniones de negocios</option>
</datalist>
<label>Comentarios finales</label><br>
<textarea placeholder="Hola..."></textarea><br>
<input type="submit" name="enviar">
</div>
</fieldset>
</form>
</div>
<div class="otro">
<h2>O también puedes encontrarme como...</h2>
<div class="image-contact">
<div class="opcion">
<a href="https://www.facebook.com/SoyRuloGM"><div class="image" id="rulo"></div><br></a>
<label>FB: @SoyRuloGM</label>
</div>
<div class="opcion">
<div class="image" id="rulooo"></div><br>
<label>linkedin: Raúl Guadarrama</label>
</div>
</div>
<h3><a href="index.html">Atrás</a></h3>
</div>
</div>
</div>
</body>
</html>