How To Make Text Bold In HTML? - Tutorialspoint
Có thể bạn quan tâm
- Home
- Whiteboard
- Online Compilers
- Practice
- Articles
- AI Assistant
- Jobs
- Tools
- Corporate Training
- Courses
- Certifications
- Switch theme
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
To make text bold in HTML, use the <b>?</b> tag or <strong>?</strong> tag. Both the tags have the same functioning, but <strong> tag adds semantic strong importance to the text. The <b> tag is a physical markup element, but do not add semantic importance.
Just keep in mind that you can get the same result in HTML with CSS font-weight property.

Example
You can try to run the following code to make text bold in HTML using <strong>?</strong> tag
Live Demo
<!DOCTYPE html><html> <head> <title>HTML text bold</title> </head> <body> <h2>Our Products</h2> <p>Developed 10 <strong>Android</strong> apps till now.</p> </body></html>Example
You can try to run the following code to make text bold in HTML using font-weight property
Live Demo
<!DOCTYPE html><html> <head> <title>HTML text bold</title> </head> <body> <h1>Tutorialspoint</h1> <pstyle="font-weight: bold;">Simply Easy Learning</p> </body></html>
Monica Mona Updated on: 2023-09-06T14:16:19+05:30 41K+ Views
Từ khóa » Html Bold Line
-
HTML Text Formatting - W3Schools
-
How To Draw A Bold Horizontal Line In Html\ Code Example
-
How To Bold, Italicize & Format Text In HTML - HubSpot Blog
-
How To Make Bold Text HTML - Career Karma
-
Need To Bold One Line Of Text Using CSS And The Div Id Tag
-
Example: Bold, Italics, Case, And Line Height - HTML Dog
-
HTML - Bold - Tizag Tutorials
-
HTML Tutorial => Bold, Italic, And Underline
-
How To Highlight The First Line Of A Paragraph - Learn Web Development
-
Markdown For Jupyter Notebooks Cheatsheet - IBM
-
Font-weight - CSS: Cascading Style Sheets - MDN Web Docs
-
[PDF] Marking Up With HTML Tags For Bold, Italic, And Underline An HTML ...
-
Basic Syntax - Markdown Guide
-
How To Style A Horizontal Line - W3docs