mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/LMSGI-2024-25.git
synced 2025-11-09 09:57:39 +01:00
24 lines
861 B
HTML
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>
|