Skip to main content
Version: v6

The Form landmark is missing in a region of the page that operates as a Form.

The Form landmark is missing in a region of the page that operates as a Form. — rule summary
FieldValue
Rule codeManual_FormLandmark_Missing
WCAG conformance levelA
WCAG success criterion1.3.1 Info and Relationships
Must be fixed at sourceNo

Description​

A form landmark is missing in a region that operates as a form, which is essential for providing a clear structure for users, particularly those using assistive technologies. Landmarks help users navigate the page more efficiently by identifying regions such as navigation, main content, and forms.

How to fix​

Add a form landmark using <form> or <div role="form"> to define the form region on the page. For example: <form> <label for="email">Email</label> <input id="email" type="email" /> ... </form>.