+ 1
what is the diferences between <Strong> and <b>
either are the same
3 Answers
+ 12
<b> stands for presentationally bold, while <strong> stands for semantically emphasized text. <b> refer to style. If you use <b> it means you want the text to look bold purely for stylistic reasons. You would use <strong> if you wanted that bit of text to look bold and have emphasis. That means itâs an important piece of information. There is no visual difference. They look exactly the same. The difference comes with text-to-speech programs, often used by blind people.
- Kashif Hashmi
0
In most browsers, they would do the same thing. In HTML5 <strong> tells the browser that the text is important text. <b> means this is bold text. Most browsers would make important text bold though, and this is why they seem to be exactly the same thing.
- Chukwuji Daniel C
0
thank you