So, in my current project, when you navigate to the "team" page, which has the path /home/about/company/team/
the header of the page looks like this:
/home/about/company/ <--- this is what i call the "rootline"
TEAM <-- this is the title of the current page
... content goes here ...
My current markup looks like this:
<h1>TEAM</h1>
<h2>/home/about/company/</h2>
<div id="content">
<h3>Content Headline</h3>
...
</div>
But it feels wrong to wrap the rootline in h2
tags. Actually, its not a headline, right? Whats your opinion on how to create good, semantic HTML in this case?