+ 7
What's the diffrrence between "strong" and "bold" tags in html?
7 Answers
+ 4
In HTML5Ā <strong>Ā andĀ <b>Ā both exist and have a different meaning.
TheĀ <b>Ā tag is for "offset text conventionally styled in bold". If you read deeper intoĀ the detailsĀ you'll see it adds, "without conveying any extra emphasis or importance".
<strong>Ā is different. It "represents a span of text with strong importance." There is semantic meaning of importance here. In fact, aĀ <strong>Ā tag within anotherĀ <strong>Ā tag has even more importance.Ā
+ 1
in html5 you using only <strong>. when u use strong browsers like google, bing etc. searching your words. bold only make your word darker. So only use <strong>.
0
<b> is a style - we know what "bold" is supposed to look like.
<strong> however is an indication of how something should be understood.
0
<b> is d norms for big while <strong> should be like a substitute when you find <b> difficult to input
0
em
0
em is for important
0
Bold is the old way and strong is the new way