Tag Description
<label> The HTML <label> tag is used for adding a label to a form control.

Example:

HTML Code Display

Which fruit would you like for lunch?
<form action="somepage.asp">
    <p>
        <input type="radio" 
               name="fruit" 
               id="banana"/>
        <label for="banana">Banana</label>
        <br />
        
        <input type="radio" 
               name="fruit" 
               id="None"/> 
        <label for="none">None</label>
    </p>
</form> 
                
Which fruit would you like for lunch?