

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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>
- Related Questions & Answers
- How to make text bold in HTML?
- How to add bold annotated text in Matplotlib?
- How do we set text font in HTML?
- How do we display inserted text in HTML?
- How do we include big text in HTML?
- How do we create underlined text in HTML?
- How do we create preformatted text in HTML?
- How do we add glossary definitions in HTML?
- How do we add document title in HTML?
- How do we include an emphasized text in HTML?
- How do we display a text area in HTML?
- How do we add a comment in HTML code?
- How do we add a noframe section in HTML?
- How do we add a noscript section in HTML?
- How do we add a definition term in HTML?
Advertisements