-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
87 lines (77 loc) · 3.3 KB
/
contacto.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="¿Tienes alguna pregunta o comentario? ¡No dudes en contactarnos! Estamos aquí para ayudarte. Completa el formulario de contacto o encuentra nuestra información de contacto.">
<meta name="author" content="Sebastián Ortiz" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css">
<script
src="https://kit.fontawesome.com/62ea397d3a.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="css/style.css">
<title>Contáctenos</title>
</head>
<body id="body">
<nav class="nav">
<ul class="nav__ul">
<li class="nav__li">
<i class="fas fa-user"></i><a href="index.html"> Quienes somos</a>
</li>
<li class="nav__li">
<i class="fas fa-star"></i><a href="index.html">¿Por qué elegirnos?</a>
</li>
<li class="nav__li">
<i class="fas fa-landmark"></i><a href="index.html"> Propuesta educativa</a>
</li>
<li class="nav__li">
<i class="fas fa-newspaper"></i><a href="index.html"> Últimas noticias</a>
</li> <li class="nav__li">
<i class="fa fa-file-signature"></i><a href="contacto.html" > Contáctenos</a>
</li>
</ul>
<ul class="nav__responsive-ul">
<div class="nav_responsive-button-container">
<div class="nav_responsive-button fas fa-bars"></div>
</div>
<div class="nav__li-container">
<li class="nav__responsive-li">
<i class="fas fa-user"></i><a href="index.html"> Quienes somos</a>
</li>
<li class="nav__responsive-li">
<i class="fas fa-star"></i><a href="index.html">¿Por qué elegirnos?</a>
</li>
<li class="nav__responsive-li">
<i class="fas fa-landmark"></i><a href="index.html"> Propuesta educativa</a>
</li>
<li class="nav__responsive-li">
<i class="fas fa-newspaper"></i><a href="index.html"> Últimas noticias</a>
</li>
<li class="nav__li">
<i class="fa fa-file-signature"></i><a href="contacto.html" > Contáctenos</a>
</li>
</div>
</ul>
</nav>
<div id="formulario" >
<h1>Contáctenos</h1>
<form
action="https://formsubmit.co/impactotenis@live.com"
method="POST"
>
<input type="hidden" name="sitio" value="localhost" />
<label for="nombre">Nombre: </label>
<input type="text" name="nombre" id="nombre" required placeholder="Ingrese su nombre" minlength="5" maxlength="15" autocomplete="off">
<label for="apellido">Apellido: </label>
<input type="text" name="apellido" id="apellido" placeholder="Ingrese su nombre apellido" required autocomplete="off">
<label for="email">Correo: </label>
<input type="email" name="correo" id="email" required placeholder="Ingrese su email" autocomplete="off">
<label for="comentario">Comentario: </label>
<textarea name="comentario" id="comentario" cols="30" rows="10" placeholder="Ingrese su comentario" autocomplete="off"></textarea>
<button type="submit">Enviar</button>
</form>
</div>
</div>
</body>
</html>