How do we add bold text in HTML?



To display bold text, use the <strong> tag. The HTML <strong> tag is used for emphasizing an important text.

Example

You can try to run the following code to implement <strong> tag in HTML −

<!Doctype html> <html>    <head>       <title>HTML strong Tag</title>    </head>    <body>       <p>This is an <strong>important</strong> text</p>    </body> </html>
Updated on: 2020-03-03T05:58:35+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements