1<html>
2 <head>
3 <title>Bold text</title>
4 </head>
5 <body>
6 <p>Use the strong element to <strong>indicate strongly emphasized</strong> content.</p>
7 </body>
8</html>
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<!-- To make your text bolder in HTML -->
2<p> instead of <b> which styles the text to be bolder </b> use
3 <strong> which actually maked the text bolder </strong> </p>