You should be familiar with HTML tags! But there are still some practical labels I don't know! Let's share some of the labels we learned today! :)
<Fieldset> <legend> General Information </legend> <br/> <table> <tr> <td> <label for = "lblName"> name </label> </ td> <input id = "lblName"/> </td> </tr> </table> </fieldset> <legend> details </ legend> <br/> <table> <tr> <td> <label for = "lblAddress"> Home address </label> </td> <input id = "lblAddress"/> </td> </tr> </table> </fieldset> <select> <optgroup label = "Database"> <option> MSSql </option> <option> MySql </option> <option> DB2 </opti On> </optgroup> <optgroup label = "Programming Language"> <option> C # </option> <option> Java </option> <option> PHP </option> </optgroup> </select> <br/> <a href = "#" title = "show all"> message... </A>
Running effect:
Fieldset: group tag, legend: only used in the fieldset tag!
Optgroup: group in select. Unfortunately, it cannot be nested, so it can be made into a tree drop-down!
<H2 id = "top">
// 2
How to quickly access a link when there are many hyperlinks on the page!
<A href = "#" accesskey = "M"> in IE, press Alt + Shift + M to quickly find me </a>
Set the accesskey!
Address: http://www.dreamdu.com
Technorati Tag: HTML