-
Notifications
You must be signed in to change notification settings - Fork 180
Description
The website needs to be fully accessible via keyboard. Websites that can be operated using only the keyboard can also be used with alternative keyboards and voice input technologies.
All functionalities of the website are operable using the keyboard.
Rationale:
-
After opening the submenu in the main navigation, keyboard focus cannot be moved to the expanded submenu items. As a result, users are unable to reach or operate these menu points using the Tab key.
-
If an
<a>element does not include anhrefattribute, it is not a proper link and therefore inaccessible to keyboard users. One such element appears on the homepage:
<a name="more"></a>
-
An
<a>withouthrefcannot be reached via the Tab key, as it is no longer technically considered a link. -
The use of the
nameattribute for anchors is deprecated. Historically,name="..."was used for in-page anchors, but today the standard approach is to useid="...".
Recommendation:
- Make the main navigation operable via keyboard.