IFCD0210/Practicas/Practicas HTML/Formularios/practica1.html
Marcos Lopez 85e8122aa3 Dia 18
2023-12-18 13:56:38 +01:00

39 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formularios 1</title>
</head>
<body>
<form action="">
<fieldset>
<legend>Datos Personales</legend>
<label>Nombre
<input type="text" placeholder="Escribe tu nombre...">
</label> <br>
<label>Apellidos
<input type="text" placeholder="Escribe tus apellidos...">
</label> <br>
<label>DNI
<input type="text" placeholder="NIF">
</label> <br>
<br>
<input type="radio" name="radio1"><label for="radio1">Masculino</label>
<input type="radio" name="radio2"><label for="radio2">Femenino</label>
<input type="radio" name="radio3"><label for="radio3">Otros</label>
<input type="radio" name="radio3"><label for="radio3">Prefiero no contestar</label>
<br>
<label> Estoy de acuerdo con los terminos y condiciones
<input type="checkbox">
</label> <br>
<input type="submit" name="enviar" value="Enviar POR CORREO" />
<input type="reset" name="limpiar" value="Limpiar el
formulario" />
</fieldset>
</form>
</body>
</html>