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
1<!--
2 You have 2 options
3-->
4<i>This text is the original italic</i>
5<em>This is actually emphasising a phrase, but will do just the same</em>
1<!-- To make text italic in HTML -->
2<p> You have to use <em> To make you text italic instead of </em>
3 <i> because this tag styles the text to be italic not changes real text</i> </p>
1<b>I'm a content</b> <!-- Ce texte va etre en gras -->
2<i>I'm a content</i> <!-- Ce texte va etre italic -->
3<u>I'm a content</u> <!-- Ce texte va etre souligner -->