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<p>Use <strong>the strong element to add bold</strong> to it!</p>
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>
1<b> Bold Text </b>
1
2 <!DOCTYPE html>
3<html>
4
5<body>
6
7 This is some <b>bold</b> text.
8
9</body>
10
11</html>
12