martes, 19 de junio de 2018

Formulario de Estudio

<html>
<head>
  <title>Formulario</title>
</head>
<body>
<form action="registrardatos.php" method="post">
 Ingresar un nombre:
 <input type = "text" name="nombre" size= 20> <br>

 Seleccione nivel de estudio:
 <select name = "Nivel de Estudio">
 <option value = "1"> Primario</option>
 <option value = "2">Secundario</option>
 <option value = "3"> Universitario</option>
 </select>
 <br>
 Seleccione carreras:
 <br>
 <input type="checkbox" name="estudio" value="1">Psicologia<br>
 <input type="checkbox" name="estudio" value="2">Ingenieria<br>
 <input type="checkbox" name="estudio" value="3">Programador<br>
 Comentario<br>
 <textarea Name="Comentario" rows="5" cols="60"></textarea>
 <input type= "submit" value = "enviar"><br>
</form>
</body>
</html>