Closed danawoodman closed 10 months ago
As @bempensato mentioned in #2294 (and reported in #2789), having a <header> as a child of <footer> is invalid.
<header>
<footer>
Moving to use an <h6> tag as it has the lowest weight of a page's heading tags and still properly represents a heading of the <nav> section.
<h6>
<nav>
Ran through the W3C validator to confirm, passes with flying colors:
Note I also changed <br/> to <br> as the validator warns the trailing slash is unnecessary.
<br/>
<br>
Closes #2789
Thank you @danawoodman
As @bempensato mentioned in #2294 (and reported in #2789), having a
<header>
as a child of<footer>
is invalid.Moving to use an
<h6>
tag as it has the lowest weight of a page's heading tags and still properly represents a heading of the<nav>
section.Ran through the W3C validator to confirm, passes with flying colors:
Note I also changed
<br/>
to<br>
as the validator warns the trailing slash is unnecessary.Closes #2789