-
Notifications
You must be signed in to change notification settings - Fork 0
/
Formulario.html
52 lines (41 loc) · 1.65 KB
/
Formulario.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Formulario de contacto</title>
<link rel="stylesheet" href="CSS/estilos.css">
<link rel="stylesheet" href="CSS/font-awesome.css">
<script src="JS/jquery-3.2.1.js"></script>
<script src="JS/script.js"></script>
</head>
<body>
<section class="form_wrap">
<section class="cantact_info">
<section class="info_title">
<span class="fa fa-user-circle"></span>
<h2>CONTACTO<br>AL DESARROLLADOR.</h2>
</section>
<section class="info_items">
<p><span class="fa fa-envelope"></span> [email protected]</p>
<p><span class="fa fa-mobile"></span> (+503) 7999-6485</p>
</section>
</section>
<form action="" class="form_contact">
<h2>Envia un mensaje</h2>
<div class="user_info">
<label for="names">Nombres *</label>
<input type="text" id="names">
<label for="phone">Telefono / Celular</label>
<input type="text" id="phone">
<label for="email">Correo electronico *</label>
<input type="text" id="email">
<label for="mensaje">Mensaje *</label>
<textarea id="mensaje"></textarea>
<input type="button" value="Enviar Mensaje" id="btnSend">
</div>
</form>
</section>
</body>
</html>