HTML Bold

HTML <b> tag is used to display the written text in bold format.

See this example:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of HTML bold tag</title>
</head>
<body>
    <p><b>Hello World!</b></p>
 </body>
</html>