You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<header><!-- stuff --></header><!-- end /header --><main><header><!-- main header stuff --></header><!-- stuff --><footer><!-- main footer stuff --></footer></main><!-- end /main --><footer><!-- stuff --></footer><!-- end /footer -->
Two [for me more semantically correct]
<header><!-- header stuff outside main --></header><!-- end /header --><main><!-- stuff --></main><!-- end /main --><footer><!-- footer stuff outside main --></footer><!-- end /footer -->
Three
<main><header><!-- header stuff inside main --></header><!-- end /header --><!-- stuff --><footer><!-- footer stuff inside main --></footer><!-- end /footer --></main><!-- end /main -->