I am trying to eradicate my HTML code of tags such as <strong>
, <i>
, <b>
, and <em>
. I understand that <strong>
and <b>
can be accomplished in CSS by using font-weight: bold
. I also understand that <italic>
can be accomplished in CSS by using font-weight: italic
. However, I am not sure how what the CSS equivalent for <em>
is. After a lot of research, I really do not even see the difference between <strong>
, <b>
, and <em>
.
Therefore, what is the difference between <strong>
, <b>
, and <em>
, and what is the CSS equivalent of <em>
? Any suggestions are appreciated. Thank you.