Mobile app version of vmapp.org
Login or Join
Gonzalez347

: Main tag is embedded in an unordered list. Will this affect SEO? By way of design the header of my document looks like this. The <h1> is buried in an <ol>. It's still the first

@Gonzalez347

Posted in: #Html #Seo

By way of design the header of my document looks like this. The <h1> is buried in an <ol>. It's still the first heading tag of the page but will it lose any of it's SEO value compared to it just sitting on it's own as the first tag of the body?

<body>
<header>
<nav>
<ol>
<li><h1><a href="">Company Name</a></h1></li>
<li><a href="">About</a></li>

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Gonzalez347

2 Comments

Sorted by latest first Latest Oldest Best

 

@Smith883

That <h1> will be the heading for the <nav> section and not the page as a whole. <nav> is its own sectioning element and won't affect the page's SEO.

10% popularity Vote Up Vote Down


 

@Hamaas447

It shouldn't effect SEO. Use a <span> or a class, and some CSS.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme