+ 2
Strong text???
What does the <strong></strong> piece of code do to the script??
3 Respuestas
+ 3
It's not the same as b.
<b> makes the text bold, <strong> marks it as important.
This means: <b> carries no meaning, and you should just use CSS instead - that's where we put design things. <b> just does nothing on it's own.
<strong> happens to be bold in browsers by default, but, to make text bold, you shoud use CSS. The important part is that it marks the text as important.
https://www.sololearn.com/discuss/95669/?ref=app
+ 1
Schindlabua Oh ok thanks much