Solución al ejercicio pedido a la clase.
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8"/>
		<title>Formularios 04</title>
	</head>
	<body>
		<form method="get" action="http://aprenderaprogramar.com" style="text-align: center;">
			<h1>Inscripción al concurso Saber y Ganar</h1>
			<label for="nom">Nombre(s): </label>
			<input type="text" name="nom" id="nom"/><br/>
			<label for="ape">Apellido(s): </label>
			<input type="text" name="ape" id="ape"/><br/>
			<label for="email">Email: </label>
			<input type="text" name="email" id="email"/><br/>
			<input type="submit" value="¡¡¡Me apunto!!!"/>
			<input type="reset" value="Cancelar"/>
		</form>
		<form method="get" action="http://aprenderaprogramar.com" style="text-align: center;">
			<h1>Petición de información</h1>
			<label for="nomb">Nombre(s): </label>
			<input type="text" name="nomb" id="nomb"/><br/>
			<label for="pais">Pais: </label>
			<input type="text" name="pais" id="pais"/><br/>
			<label for="ema">Email: </label>
			<input type="text" name="ema" id="ema"/><br/>
			<label for="cons">Consulta: </label><br/>
			<textarea name="cons" id="cons" rows="5" cols="40"></textarea><br/>
			<input name="enviar" type="image" src="http://electronicsonline.com.ve/imagenes/botonarriba.PNG"/>
			<button type="reset">
				Pulse aquí para cancelar<br/>
				Esto borrará los datos
			</button>
		</form>
	</body>
</html>