+ 1
Form and input tag in HTML
We can use input tag outside of form tag and it works. Why we should use form tag?
3 Answers
+ 1
Accessibility. Form tags gives keyboard accessibility. When we write input tags inside a form it is accessible from "tab" button on keyboard.
+ 1
If we put an element out of the form, then value of the said element will not be included in form data when the form is submitted.
+ 1
Form tags helps you post all the input fields that are inside the form tags to a database or an API.