
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
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>
Advertisements