-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
48 lines (38 loc) · 1.15 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<title> Mi primera web con varias paginas</title>
</head>
<body>
<!-- Encabezado -->
<h1>MI PRIMERA PAGINA WEB</h1>
<!-- Menu -->
<ul>
<li><a href="index.html" title="inicio">Inicio</a></li>
<li><a href="contenidos.html" >Contenidos</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
<hr />
<!-- Contenido de contacto -->
<h2>Contacto</h2>
<form>
<p>
<label for="nombre"> Nombre</label> <br />
<input type="text" name="nombre" />
</p>
<p>
<label for="biografia"> Biografia</label> <br />
<textarea name="biografia"></textarea>
</p>
<p>
<label for="edad"> Edad</label>
<select name="edad">
<option value="mayor">Mayor de edad</option>
<option value="adulto">Adulto</option>
<option value="65">Mayor de 65 años</option>
</select>
</p>
<input type="submit" value="Enviar Email"/>
</form>
</body>
</html>