Solución al ejercicio pedido a la clase CU00725B del tutorial de programación web HTML para principiantes.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Formularios 05</title>
</head>
<body>
<form method="post" enctype="multipart/form-data" action="http://aprenderaprogramar.com" style="text-align: center;">
<h1>Inscripción al Concurso Jara y Sedal</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="nom" id="nom"/><br/>
<label for="direc">Direccion: </label>
<input type="text" name="direc" id="direc"/><br/>
<label for="img">Subir Fotografia: </label><br/>
<input name="img" type="file"/><br/><br/>
<input type="submit" value="¡¡¡Me apunto!!!"/>
<input type="reset" value="Cancelar"/>
</form>
</body>
</html>