Open bastibe opened 5 years ago
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?
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
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?