🎓 Student Registration Form
📘 Explanation of Tags Used:
- <form>: Wraps all input elements. Sends data to the server.
- <fieldset>: Groups related form fields with a border.
- <legend>: Describes each fieldset's purpose.
- <label>: Labels inputs. Improves accessibility.
- <input>: For user input — text, email, date, password, etc.
- <select>: Dropdown menu. Paired with <option> tags.
- <option>: Individual choices inside a dropdown.
- <textarea>: Multi-line text area. Ideal for address/feedback.
- <button>: Submits the form when clicked.