# Form elements should have a visible label

> Canonical HTML version: https://rocketvalidator.com/accessibility-validation/axe/4.6/label-title-only
> Attribution: Rocket Validator (https://rocketvalidator.com)
> License: CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/)

Using the `title` or `aria-describedby` properties, form `<input>` elements may be given titles (but not both).
The purpose of these qualities is to convey more information, such as a tip.

These properties are used to convey additional information, such as a hint. Hints are exposed differently to accessibility APIs than labels, which can cause issues with assistive technologies.

When form inputs such as text entry fields, radio buttons, check boxes, and select menus do not have labels other than the `title` and `aria-describedby` attribute values, screen readers perceive the material as advisory only. The labels provided by the `title` and `aria-describedby` attributes are insufficient to create a real label that can be inferred programmatically from the input form element's code.

<h3>What this Accessibility Rule Checks</h3>

Ensures that every `<input>` that requires a label has a label other than `title` or `aria-describedby`.
