Coding Wiki
Most Common Coding Questions
Find answers to popular programming questions and level up your coding skills
How to bold text in html
Learn how to make text appear bold in HTML
Answer:
To bold text in HTML, you can use the <b> or <strong> tag. These tags will wrap around the desired text and make it appear bold.
html
<b>Bold text</b> or <strong>bold text</strong>
For example, if you want to make the word 'Hello World' bold, you can use either of the following codes: <b>Hello World</b> or <strong>Hello World</strong>