<form autocompelate= "on" id= "from1" >
<!--Common Properties--
E-mail: <input type= "Email" >
Address: <input type= "url" >
Tel: <input type= "Tel" ><!--not supported--
Numbers: <input type= "Number" min= "1" max= "Ten" step= "2" >
Progress bar: <input type= "Range" min= "1" max= "Ten" step= "2" >
Color: <input type= "Color" ><!--not supported--
Time: <input type= "date" ><!--not supported--
Month: <input type= "month" ><!--not supported--
Week: <input type= "Week" ><!--not supported--
<!--text automatically opens automatically get focus--
<input type= "text" autofocus= "Autofocus" >
<!--text drop-down list start
<input type= "text" list= "TagList" >
<datalist id= "TagList" >
<option>wuban</option>
<option>baidu</option>
</datalist>
<!--Description: <form autocompelate= "on" > Plus this property is automatically associated when input
< end!--text drop-down list--
<!--submit to different pages-
<input type= "text" formaction= "index.php" >
<!--Batch upload _ Default support single, multiple= "multiple" bulk upload properties--
<input type= "File" multiple= "multiple" >
<!--Enable Regular _ when not qualified will pop up the prompt--
<input type= "text" pattern= "{0-9}{6}" title= "Please enter phone number" >
<!--Open the default prompt for text boxes--
<input type= "text" placeholder= "Please enter user name" >
<!--text cannot be empty--
<input type= "text" required= "required" >
Submitted by: <input type= "Submit" >
</form>
<!--submitted outside the form form= "From1" is the current form from the id-->
<input type= "text" form= "from1" >
<!--Hidden
<p hidden= "hidden" >xxx</p>
html5-Forms Common operations