Label
LABEL element defines a name or label associated with an INPUT element. The LABEL attribute provides a way for the browsers to clearly link label content to the control. For Example:
<FORM>
<LABEL FOR="firstname">First Name:</LABEL>
<INPUT TYPE="text" NAME="fname" ID="firstname">
<LABEL FOR="lastname">Last Name:</LABEL>
<INPUT TYPE="text" NAME="lname" ID="lastname">
</FORM>