formulario html
<!DOCTYPE html> <html> <head> <title>Formulario de registro - Mi web</title> </head> <body> <h1>Formulario de registro</h1> <form action="" method="get"> <p> <label for="nombre">Nombre:</label> <input type="text" name="nombre" id="nombre" maxlength="50" /> </p> <p> <label for="apellidos">Apellidos:</label> <input type="text" name="apellidos" id="apellidos" maxlength="50" /> </p> <p> Sexo: <input type="radio" name="sexo" id="sexo-h" value="h" /> <label for="sexo-h">hombre</label> <input type="radio" name="sexo" id="sexo-m" value="m" /> <label for="sexo-m">mujer</label> </p> <p> <label for=...