Mobile app version of vmapp.org
Login or Join
Berryessa370

: Using header tag for menu is SEO Friendly? i just want to know is this ok if i use this stucture: <header> <h1>Luke</h1> <ul> <li><a href="#">Sign

@Berryessa370

Posted in: #Html5 #Seo

i just want to know is this ok if i use

this stucture:

<header>
<h1>Luke</h1>
<ul>
<li><a href="#">Sign In</a></li>
<li><a href="#">Sign Up</a></li>
</ul>
</header>


instead of this ?

<div id="header">
<div id="luke">
<h1>Luke</h1>
</div>
<div id="navbar">
<ul>
<li><a href="#">Sign In</a></li>
<li><a href="#">Sign Up</a></li>
</ul>
</div>
</div>


and if not, i want to know why ? and also i want to know which one is SEO Friendly and why?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Berryessa370

1 Comments

Sorted by latest first Latest Oldest Best

 

@Connie744

At the moment, neither has an advantage over the other because search engines and browsers do not use the document outline provided by HTML5 for its stated purpose. Google will see your <h1> heading and your list while ignoring everything else.

However, that should change in the future as online publishing becomes more sophisticated and such things as headers need to be identified.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme