Buenas noches, aqui mi solución para el ejercicio CU00725B del tutorial básico de desarrollo web con HTML para principiantes.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Resolución ejercicio CU00725B - Hugo Segura(hymsoft)</title>
</head>
<body>
<h1 style="text-align:center; text-decoration:underline" >Inscripción al concurso Jara y Sedal</h1>
<form method="get" action="alta_curso.php">
<label for="nombre">Nombre(s): </label><input name="nombre" id="nombre" type="text"><br/><br/>
<label for="apellidos">Apellido(s): </label><input name="apellidos" id="apellidos" type="text"><br/><br/>
<label for="direccion">Dirección: </label><input name="direccion" id="direccion" type="text" size="50px"><br/><br/>
<label for="fotogrqafia">Seleccione una fotografía: </label><input name="fotografia" id="fotografia" type="file"><br/><br/>
<button type="submit">¡¡¡Me apunto!!!</button> <button type="reset">Cancelar</button>
</form>
</body>
</html>