bold html

HTML
<p>This is normal text - <b>and this is bold text</b>.</p>
 <html>
 <head>
   <title>Bold text</title>
 </head>
 <body>
   <p>Use the strong element to <strong>indicate strongly emphasized</strong> content.</p>
 </body>
</html><!--Italic text, without any extra importance-->
<i>I'm a content</i>

<!--Emphasized italic text, with added semantic importance-->
<em>I'm another content</em><text>Your Text...</text><!-- The <b> tag bolds text without any emphasis-->
Source

Also in HTML: