Mobile app version of vmapp.org
Login or Join
Shelton105

: Vs. (for FAQ's) We are in the process of publishing FAQ's on our website. For this I am creating the templates and ask myself the following question: What tag should I use for the questions?

@Shelton105

Posted in: #Html #Markup #Seo

We are in the process of publishing FAQ's on our website. For this I am creating the templates and ask myself the following question:

What tag should I use for the questions? I've chosen <strong> for the moment, but I'm not sure if <h3> would fit better here.

<div class = "accordion-heading">
<strong>
Here is the question
</strong>
</div>
<div class = "accordion-body schedule">
Here is the answer
</div>


Can somebody tell me if the strong tag is more important than a h3 headline for Google, or is there a better solution than my current one?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Shelton105

1 Comments

Sorted by latest first Latest Oldest Best

 

@Smith883

When in doubt, always follow the WHATWG web standards and you will always be correct. Search engines can change. Web standards change rarely or slowly and search engines look to web standards just like their browsers do (which they also author).

<h3> is a heading for a section in your document. So is that phrase a heading? If not, then <strong> can work but that element is never to be used for styling! If you want to style it, use CSS. Otherwise, <strong> isn't needed at all and you can use <div> or some other element like a <span> (more relevant).

So let's see what the HTML standard has to say:


These elements represent headings for their sections.


Is that true with that phrase?

Let's see what it says about <strong>


The strong element represents strong importance, seriousness, or
urgency for its contents.


Is that true here?

Do not confuse SEO with presentation. If one is to follow the advice of "Google doesn't care about tags", then you might as well just use <div> for everything and be done with it. But Google is the chief editor for the HTML web standards. If Google didn't really care, why is it so important to them to supply an employee to do such a thing for many years?

Google has stated that they consider element usage and meaning based on how web sites use them. Use them properly and you are never wrong.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme