This element represents a caption in a user interface. The caption can be associated with a specific form control, known as the label element's labeled control, either using for attribute, or by putting the form control inside the label element itself.
<div class="class-name" id="label-id-name">
<label for="label-id-name">This is the LABEL element</label>
<input type="text" id="label-id-name">
</div>
This element represents a caption for the rest of the contents of the legend element's parent fieldset element, if any.
<form>
<fieldset>
<legend>This is the LEGEND element</legend>
</fieldset>
</form>
This element represents a list item. If its parent element is an ol, ul, or menu element, then the element is an item of the parent element's list, as defined for those elements. Otherwise, the list item has no defined list-related relationship to any other li element.
<li>This is the LI element</li>
Type: header
This element allows authors to link their document to other resources.
<link rel="stylesheet" href="../assets/css/styles.css">