<textarea></textarea>-Multi-line text box
COLS--Column
Rows--row
Label Tags:
Name: <input type= "text"/>
Married no <input type= "checkbox"/>
<label for= "Name" > Name: </label><input id= "name" type= "text"/>
<label for= "Ma" > </label><input id= "ma" type= "checkbox"/>--click the text to select the check box
<fieldset>--equivalent to WinForm GroupBox dividing the control into one area looks more structured
<legend> Common </legend>--groupbox titles
<input type= "Text"/>
<input type= "Radio"/>
<input type= "checkbox"/>
</fieldset>
<table border= "1";
<tr> <td><label for= "username" > User name: </label></td><td><input id= "username" type= "text"/ ></td></tr>
<tr><td><label for= "pwd" > Password: </ Label></td><td><input id= "pwd" type= "password"/></TD></TR>
<tr><td><label for= "Checkcode" > Verification Code:</label></td><td>< Input id= "Checkcode" type= "text"/></TD></TR>
<tr><td colspan= "2" ><label for= "remind" > Remember password </label>< Input id= "remind" type= "checkbox"/></TD></TR>
<TR><TD ><input type= "Submit" value= "Login"/></TD></TR>
</table>
"Alt": indicates that if the picture does not exist or is disabled, the "CAPTCHA" three characters are displayed.
HTML section label description (c)