DONT ADD ANYTHING HERE!

The label represents a caption in a user interface

Notes

  1. The caption can be associated with a specific form control, known as the label element's labeled control, either
    1. by using the for attribute
    2. by putting the form control inside the label element

Example

<label>
    <input type=checkbox name=lost>
    Lost
</label>
                        
<label for="myid">name</label>
<input id="myid" type="text">
                        

References