-
-
Notifications
You must be signed in to change notification settings - Fork 180
Closed
Labels
good first issueNew-contributor friendlyNew-contributor friendlyhelp wantedOpen to participation from the communityOpen to participation from the community✨ goal: improvementImprovement to an existing featureImprovement to an existing feature💻 aspect: codeConcerns the software code in the repositoryConcerns the software code in the repository🟩 priority: lowLow priority and doesn't need to be rushedLow priority and doesn't need to be rushed
Description
Problem
The Chooser currently uses the <h1>-<h6> heading levels according to the design. Headings are used for creating the outline for a page, which is important for accessibility purposes. Skipping heading levels makes the outline, or website's table of contents, incorrect. This also lowers our Lighthouse Accessibility score:

Description
Fortunately, CC's design system provides a way to use the headings' visual styles in an accessible way:
To create a second-level heading that visually looks like <h5>, we can use <h2 class="title is-5">.
So, this is the list of changes that need to be introduced:
- Main heading ('License Chooser') should be
<h1>that looks likeh2 - Section headings (
h3) should be<h2>with the style ofh3 - Step header headings (
h5) should be<h2>with the style ofh5
Implementation
- I would be interested in implementing this feature.
Metadata
Metadata
Assignees
Labels
good first issueNew-contributor friendlyNew-contributor friendlyhelp wantedOpen to participation from the communityOpen to participation from the community✨ goal: improvementImprovement to an existing featureImprovement to an existing feature💻 aspect: codeConcerns the software code in the repositoryConcerns the software code in the repository🟩 priority: lowLow priority and doesn't need to be rushedLow priority and doesn't need to be rushed