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<!-- 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>