Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<html>

<head>
<title>Datos personales</title>
</head>
<body>
<form action="proceso.php" method="post">
<fieldset>
<legend><b>Datos personales</b></legend>
<p><b>Fecha:</b> <input type="date"></p>
<p><b>Nombre:</b> <input type="text" name="nombre"
size="45"
placeholder="Indica nombre
completo"></p>
<p><b>Edad:</b> <input type="text" name="edad"
size="3"></p>
<p><b>Correo:</b> <input type="email"></p>

</fieldset>
<fieldset>
<legend><b>Datos de
interés</b></legend>
<p><b>¿Estás casado?:</b>
<input type="radio"
name="p1"> Sí
<input type="radio"
name="p1"> No
</p>
<p><b>Número de
hijos:</b>
<input type="number"
min="0" max="5" size="3">
</p>
<p><b>Sueldo: (1000€ -
2000€)</b>
<input type="range"
min="1000" max="2000" step="100">
</p>
<p><b>Deportes:</b>
<input
type="checkbox" name="p2"> Baloncesto
<input
type="checkbox" name="p2"> Fútbol
<input
type="checkbox" name="p2"> Ciclismo
</p>
<p><b>¿Qué color te
gusta?</b>
<input type="color">
</p>
<p><b>Matrícula de coche</b>
<input type="text"
pattern="\d{4}[A-Z]{3}">
</p>
<p><b>Porcentaje del proyecto
finalizado</b>
<progress max="100"
value="90">
</p>
</fieldset>
<form autocomplete="off"
action="/action_page.php">
<div class="autocomplete"
style="width:300px;">
<input id="myInput"
type="text" name="myCountry" placeholder="Country">
</div>
<input type="submit">
</form>

<br>
<input
type="submit" value="Enviar">
</form>
</body>
</html>

You might also like