Mobile app version of vmapp.org
Login or Join
Courtney195

: Is there any SEO benefit to placing testimonial text inside a heading element? Is there any SEO benefit to placing testimonial text on a landing page nested inside of an <h3> element?

@Courtney195

Posted in: #BestPractices #Html #Seo

Is there any SEO benefit to placing testimonial text on a landing page nested inside of an <h3> element? For example:

<div class="active item">
<div class="hero-testimonials" id="hero-testimonials-ge">
<div class="container phone-center text-white text-shadow">
<div class="col-md-3 col-xs-4 col-xs-offset-4">
<img src="/us/_media/images/logo-testimonials-ge-sml.png">
<hr class="double">
</div>
<div class="col-md-8 col-md-offset-1">
<--!The h3 subheading which contains paragraph length testimonial -->
<h3 class="subheading">We love the program and we use it here daily. It is definitely one of the best time-saving tools we have purchased in a very long time.</h3>
<cite>— Carlo Ceroili, GE Water Technologies</cite>
</div>
</div>
</div>


Am I missing some benefit to including the testimonial in a heading which would not be gained by including it inside of a div?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Courtney195

1 Comments

Sorted by latest first Latest Oldest Best

 

@Merenda212

Short answer: No, there isn't, and in fact it might be a detriment.



Longer answer:

You're asking the wrong question. Bear with me for a moment here :)

Google does its best to understand your site in a way that visitors to it will. It's only a bot, but it's pretty clever and the algorithms are constantly being updated.

If you want to game Google, it might work in the short term. But in the long term, it'll result in you ranking lower (all other things considered) than a site that correctly and semantically identifies its content.

You need to ask the question: what is an h3 for? It's to denote a heading, not the primary heading on a page and maybe not the second level either. But its right after that: a subheading which explains - in a phrase or very short sentence - what the piece of content that comes after it is about.

Consider a page with a bunch of (sub)headings with no (or very little) content between them. How might Googlebot interpret this?

Perhaps:


a page with lots of big text but not much useful content
a partly-written page with the heading structure laid out but the content to come later
an attempt to game the search results


It's unlikely to treat it as "great content which should rank higher" because where is the content?

Now, if you had a short and sharp subheading that described each testimonial and displayed the testimonial text under that, you'd be getting the point across that you want to. :)

The moral is: think first about how your page reads to a visitor. Do that right, mark it up semantically, and for most purposes, Google will rank you as appropriate.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme