+ 1
What is the use of form tag in HTML?
it collect the information from the user how
3 Answers
+ 20
The HTML <form> element represents a document section that contains interactive controls to submit information to a web server.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
https://www.w3schools.com/TAGS/tag_form.asp
+ 2
HTML creates a form and JS easy to process it:
HTML:
<input Id= btn>
JS:
alert(GetElementById("#btn").value);
+ 2
thanks