-1

In a SEO perspective optimization, which one is better: Use HTML or CSS?

I searched in some contents and I didn't get a precise and updated answer.

Eduardo
  • 9
  • 2

1 Answers1

1

font-weight: Affects how the text looks in the browser.

<strong> : Gives syntactic significance to the text such that screen readers and web scrapers can use to understand which text is important.


<strong> is the standard used from HTML 5

You can just mimic <strong> using font-weight:bold

krishnaacharyaa
  • 14,953
  • 4
  • 49
  • 88