We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A website should only have one <h1>. However, our index page currently contains every post in its entirity, including each posts <h1>.
<h1>
Possible solutions:
<h2>
<hX>
<hX-1>
<h5>
Any other ideas?
The text was updated successfully, but these errors were encountered:
There is a spec conforming way to define h7 for screen readers, but I don't know how many of them actually handle that as intended: https://www.w3.org/TR/WCAG20-TECHS/ARIA12.html#ARIA12-ex2
h7
Sorry, something went wrong.
No branches or pull requests
A website should only have one
<h1>
. However, our index page currently contains every post in its entirity, including each posts<h1>
.Possible solutions:
<h1>
to<h2>
. Then we might have multiple levels of<h2>
in a single post. We could make it look right in CSS, but it is structurally wrong.<hX>
to<hX-1>
. What to do about<h5>
? This might break the layout.Any other ideas?
The text was updated successfully, but these errors were encountered: