Q1. What are form elements in HTML?
Form elements are input controls like text fields, checkboxes, radio buttons, submit buttons, and dropdowns.
Q2. What is the most common form element?
The <input> tag is the most versatile, with various types defined by the type attribute.
Q3. What does the type attribute control?
The type attribute specifies the input type: text, password, email, number, checkbox, radio, submit, etc.
Q4. What is the purpose of the name attribute?
The name attribute identifies the field when data is submitted, serving as the key in name=value pairs.
Q5. What other form elements exist besides input?
<textarea> for multi-line text, <select> with <option> for dropdowns, <button> for clickable buttons.
