7
I decided to rewrite some 300 files that I will use in a project, because they were originally written directly on google Docs, and when saved as HTML and try to include with require
or include
, CSS’s interfere with each other (and tbm because it generates a lot of useless CSS, HTML is all messed up with a lot of classes...).
Anyway, as there are many and still tend to increase, I’m trying to use the "best" tags
to rewrite these files, and searching found several pages with the same statement:
The recommended SEO tag is the Strong in English Strong means strong ie, will make the word strong and Bold means bold, then if you use b in your posts it will just be a word in bold and not a word that should be differentiated by the robots of google searches.
This didn’t make much sense to me. What a difference can it make in the order of the results of the researches for example?
I was already using <strong>
, and I researched why I started thinking about doing <b>
, thus saving typing time, code size etc. (including this related question that explains well the semantic difference, but does not address the relationship of this with seo).
So what I’d like to know is if there really is a difference in the use of SEO HTML text-editing tags (from emphasis, italics, or any other) and what’s the practical result of this.
A page will be better ranked in the results by no longer using <b>
and start using <strong>
for example?
Visually speaking
<b>
is equal to<strong>
which is equal to<span style="font-weight: bold">
. They used to say that<strong>
was the best option for SEO, but it seems that nowadays it does not make a difference, being the content itself that makes the difference. See that comment. Also take a look at Google SEO guide here.– user622
So I also thought that only the content made a difference, but after seeing it so many times I was in doubt... I saw that comment refers to a video of Matt Cuts, but my English :/ He says it makes no difference? I’m reading the guide here, thanks, I hadn’t gone into SEO yet, and I think it’s really cool. If you want to post as an answer it’s worth at least +1. Hug.
– gustavox