HTML Text Formatting Elements
<b> - Bold text
<strong> - Bold with Important text
<i> - Italic text
<em> - Emphasized text
<mark> - Marked text
<small> - Smaller text
<del> - Deleted text
<ins> - Inserted text
<sub> - Subscript text
<sup> - Superscript text
Example
<!Doctype Html>
<html>
<head>
</head>
<body>
<b>This text is bold.</b><br>
<strong>This text is strong.</strong>
</body>
</html>
Output
This text is bold.
This text is strong.
Copyright ©2022 coderraj.com. All Rights Reserved.