mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/LMSGI-2024-25.git
synced 2025-11-09 18:03:06 +01:00
feat(ch 3): added
This commit is contained in:
23
Unidad_03_HTML/HTML/101-ejemplo-html5-formulario.html
Normal file
23
Unidad_03_HTML/HTML/101-ejemplo-html5-formulario.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user