Mobile app version of vmapp.org
Login or Join
Ann8826881

: Should I use heading tags in sidebar or not? Assume a simple blog-like website as in the picture: Red text is text related to this page only (particular article) Green are headings of articles

@Ann8826881

Posted in: #Heading #Seo

Assume a simple blog-like website as in the picture:




Red text is text related to this page only (particular article)
Green are headings of articles related to the subject of this page
Blue is a completely unrelated text to this page
Black is a "guideline text" repeated on every page


You obviously would like to optimize your website - current article - for the article content (red). So the article uses headings from H1 to H3 tags.

But what about the Sidebar and Related articles text? I used to use H2 for "related articles" h3 for THE related articles "Find a way", but since there are a lot of articles and each of them had a h2 text "related articles" and "sidebar", etc.. I found out in Google Webmasters that my website's most notable keywords are "articles" and "sidebar" - so Google thinks that my website content is about "articles" and "sidebars" and that is not what I want to achieve..

I was thinking about using h4 for related articles and h5 for THE related articles headings, but it won't correspond with the heading structure in the article (I would have to end the article with h3 to be able to follow with h4).

there is also a video from Google employee (http://www.youtube.com/watch?v=iR5itZlq8sk) that says it doesn't so much matter if you structure your content like H2 -> H4 (without H3), but in the discussion below they say it is much better to have it in right order.

So how should I structure the Hx tags for the example above to achieve max. SEO (just white-hat techniques)?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ann8826881

1 Comments

Sorted by latest first Latest Oldest Best

 

@Yeniel560

Headings give structure to the document, that is important to remember. Forget about SEO. If you do things right, visitors and ranking will come up.

Now, about the use of H1 - H6.

If you do things right, and taking advantage of the flexibility of HTML5 regarding this subject, you should have a section for each section that you mention, and on each one, you may have headings. Those headings should be used in order, from 1 to 6, but each section gives them independence from the other headings on the other sections.

When I say section, doesn't matter if it's the section or article tags; even any other flow content tag, although section and article are the most common ones.

Conclusion, yes, you should use them if they make sense on the content you are providing.

This is just an example, the correct use of section and article depend on what you want to do.

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>title of the page</title>
</head>
<body>
<section>
<h1>main title of the section</h1>
<p>some text</p>
<p>some text</p>
<h2>Secondary title of this section</h2>
<p>some text</p>
</section>
<article>
<header>
<h1>main title of the section</h1>
</header>
<p>some text</p>
<p>some text</p>
<h2>Secondary title of this section</h2>
<h3>Terciary title of this section</h3>
<p>some text</p>
<h3>Terciary title of this section</h3>
<p>some text</p>
<h2>Secondary title of this section</h2>
<p>some text</p>
</article>
</body>
</html>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme