HTML has tags that display text in a special way with having to use CSS.
<p>This is <b>bold text</b>.</p> <p>This is <strong>strongly important text</strong>.</p> <p>This is <i>italic text</i>.</p> <p>This is <em>emphasized text</em>.</p> <p>This is <mark>highlighted text</mark>.</p> <p>This is <code>computer code</code>.</p> <p>This is <small>smaller text</small>.</p> <p>This is <sub>subscript</sub> and <sup>superscript</sup> text.</p> <p>This is <del>deleted text</del>.</p> <p>This is <ins>inserted text</ins>.</p><p>This is <b>bold text</b>.</p>
<strong> and <b> tags
Both <strong>
and <b>
tags render the enclosed text in a bold typeface by default, but the <strong>
tag indicates that its contents have strong importance, whereas the <b>
tag is simply used to draw the reader’s attention without conveying any special importance.
<i> and <em> tags
<em>
and <i>
tags render text in italic type format. The <em>
tag indicates that its contents have stressed emphasis. <i>
is often used to indicate a technical term, a phrase from another language, a thought, a ship name, etc.