how to use the label tag in html

HTML
<label for="id_of_what_you're_labeling"></label>

<!-- for example-->
<label for="username"></label>
<input type="text" id="username">
Source

Also in HTML: