The <fieldset> tag is used to create a set of form fields. It make easier for users to understand their purpose and makes the documents more accessible.
Example of Code
<fieldset form="myForm" >
Name: <input type="text"><br>
Email: <input type="text"><br>
</fieldset>
Output
Name:
Email:
