The Label Tag
The <label> tag helps make your forms more accessible. Plus they become much easier to click on, as when you click on the label, the form field associated with that label gets focus automatically.
The Fieldset Tag
The <fieldset> tag lets you group your form elements so that they make more sense on the page. This is especially useful for forms that have more than 7 fields to fill in.
The Legend Tag
Use the <legend> tag with the <fieldset> tag to add extra defining text to your forms. Fieldsets divide the content into sections, and legends give those sections names.
The Optgroup Tag
The <optgroup> tag lets you add labels and groups to your drop-down menus. You put them inside the <select> tags around the different <option> tags in the group.
HOMEWORK DAY 4: Create a Form with More Advanced Tags
Use some of the tags we discussed above to create a form that is more accessible and user-friendly. If you get into the habit of using these tags as well as the basic form tags, your forms will be more useful to your customers.

