In this tutorial i will talk about HTML Forms Lable, Fieldset and Legend.
Label:
The label tag defines a label for several elements.
Proper use of labels with the elements above will benefit:
Screen reader users (will read out loud the label, when the user is focused on the element)
Users who have difficulty clicking on very small regions (such as checkboxes) - because when a user clicks the text within the label element, it toggles the input (this increases the hit area).
Fieldset:
Group related elements in a form. The fieldset tag is used to group related elements in a form. The fieldset tag draws a box around the related elements.
Legend:
The legend element is used to add a caption to a group of related form input elements that have been grouped together into a fieldset.