Remove header? Or move hero into header?

I learned that the header element is for things like the navigation bar. But what if the navigation bar and the hero section have the same background image? Should I remove the header and move the nav bar into the main section or put the hero inside the header?
No description
1 Reply
MarkBoots
MarkBoots15h ago
the header element represents introductory content As I see it, your hero section is part of that, so you could put it there <header> <nav></nav> <section id="hero"></section> </header>

Did you find this page helpful?