-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
45 lines (37 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Contactanos</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<h1>Colegio Santa Cruz International School</h1>
<div class="menu"><a href="index.html">Inicio</a>│<a href="acercade.html">Acerca de sis</a>│<a
href="ofertas.html">Oferta académica</a>│<a href="contacto.html">Contáctanos</a> </div>
<div class="contenefor">
<h2 class="cont">Contactanos</h2>
<img class="imgcontac" src="img/contacto.jpg">
<div class="contenedor2">
<form action="#" target merhod="get" name="formDatosPersonales">
<label for="nombre">Nombre:</label>
<input type="text" name="nombre" id="nombre" placeholder="Escribe tu nombre">
<label for="apellidos">Apellidos:</label>
<input type="text" name="apellidos" id="apellidos" placeholder="Apellidos">
<br>
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="email" required>
<br>
<label for="asunto">Asunto:</label>
<input type="text" name="ausnto" id="asunto" placeholder="tirular de consulta">
<br>
<label for="mensaje">Mensaje</label>
<textarea name="mensaje" for="mensaje" placeholder="Escribe brevemente tu mensaje"
maxlength="300"></textarea>
<input type="submit" name="enviar" value="enviar mensaje">
</div>
</form>
</div>
</div>
</body>
</html>