Question Bank

HTML Forms and Validation Quiz

Difficulty: Medium

Four drills on HTML5 forms: building accessible forms with constraint validation, `<datalist>` autocomplete, the `<output>` element for live calculations, and ARIA roles for error reporting.

Question Bank
/

HTML Forms and Validation Quiz

HTML Forms and Validation Quiz

Four drills on HTML5 forms: building accessible forms with constraint validation, `<datalist>` autocomplete, the `<output>` element for live calculations, and ARIA roles for error reporting.

Question Bank
Medium
HTML
4 questions
quiz
html-forms
html-attributes
accessibility

419 views

2

Build a basic sign-up form with name, email, and password fields. Use HTML5 constraint validation (required, type="email", minlength) so the form refuses to submit invalid input. Each input must be explicitly associated with a <label> and the submit button must be a real <button type="submit">.