Files
LMSGI-2024-25/Unidad_03_HTML/HTML/101-ejemplo-html5-formulario.html
2024-10-28 13:59:54 +01:00

24 lines
861 B
HTML

<!DOCTYPE HTML>
<html>
<body>
<form>
<input name="form_number" id="form_number" type="number" min="1" max="10" >
<input name="form_date" id="form_date" type="date">
<input name="form_month" id="form_month" type="month">
<input name="form_week" id="form_week" type="week">
<input name="form_time" id="form_time" type="time">
<input name="form_url" id="form_url" type="url" list="url_list">
<input name="form_email" id="form_email" type="email" list="email_list" multiple>
<input name="form_telephone" id="form_telephone" type="tel">
<input name="form_color" id="form_color" type="color">
<label>
Attachments:
<input type="file" multiple name="att">
</label>
<input name="x" type="range" min="100" max="700" step="9.09090909" value="509.090909">
</form>
</body>
</html>