1<!--Emphasized bold text. It's for content that is of greater importance-->
2<strong>I'm a content</strong>
3
4<!--Bold text. It's used to draw attention to text without indicating that it's more important-->
5<b>I'm another content</b>
6
1HTML Text Formatting Elements
2Tag Description
3
4<b> Defines bold text
5<em> Defines emphasized text
6<i> Defines a part of text in an alternate voice or mood
7<small> Defines smaller text
8<strong> Defines important text
9<sub> Defines subscripted text
10<sup> Defines superscripted text
11<ins> Defines inserted text
12<del> Defines deleted text
13<mark> Defines marked/highlighted text
14
1<p>Normal Text</p>
2<p><b>Bold Text</b></p>
3<p><i>Italic Text</i></p>
4<p><em>Emphasized Text</em></p>
5<p><mark>Marked Text</mark></p>
6<p><small>Small Text</small></p>