<form> tag are used to making forms on web pages. These forms are used to interact directly with users. Its elements are different types of input, like text fields, checkboxes, radio buttons, submit buttons and more. Attributes of these <form> tag are action, method, name, class, id, etc. The <input> tag can be displayed in many ways, depending on the type attribute.

BY Best Interview Question ON 27 Jan 2019

Example

<form>

First name:

<input type="text" name="First_name">

Last name:

<input type="text" name="Last_name">

</form>