Coding Wiki
Most Common Coding Questions
Find answers to popular programming questions and level up your coding skills
Bold text html
Learn how to use the <b> tag in HTML to display bold text.
Answer:
What does bold text mean in HTML?
html
<b>bold text</b>
In HTML, the <b> tag is used to indicate that the content inside it should be displayed in bold.
You can use this tag alone or in combination with other tags like <i> for italic text or <u> for underlined text.
html
<html><body><b>Hello World!</b></body></html>