About 9,110 results
Open links in new tab
  1. HTML Text Formatting - W3Schools

    The HTML <strong> element defines text with strong importance. The content inside is typically displayed in bold.

  2. How to Bold Text in HTML - GeeksforGeeks

    Jul 15, 2025 · The <b> tag is used to bold the text, while <strong> tag used to bold the text and shows the importance of text. We can also use CSS font-weight property to bold the text.

  3. HTML b Tag - W3Schools

    Definition and Usage The <b> tag specifies bold text without any extra importance.

  4. css - How do I make text bold in HTML? - Stack Overflow

    Dec 6, 2016 · HTML doesn't have a <bold> tag, instead you would have to use <b>. Note however, that using <b> is discouraged in favor of CSS for a while now. You would be better off using CSS to …

  5. HTML Text Formatting - GeeksforGeeks

    Nov 29, 2025 · HTML text formatting refers to the use of specific HTML tags to modify the appearance and structure of text on a webpage. It allows you to style text in different ways, such as making it …

  6. "HTML Bold Tag: Syntax, Examples, and Best Practices

    Learn how to use the HTML b tag to emphasize text, with examples, best practices, and when to use instead for better semantics

  7. Bold Font in HTML – Font Weight for Letters - freeCodeCamp.org

    Aug 31, 2021 · In HTML, there are three major ways that you can use to make text bold. You can use the <b> tag, the <strong> tag, or you can do it in CSS with the font-weight property.

  8. HTML Formatting Guide – Text Formatting

    Learn HTML formatting tags like bold, italic, underline, mark, small, and more with examples and best practices.

  9. <b> HTML bring attention to element - HTML | MDN

    Apr 24, 2026 · If you wish to create boldface text, you should use the CSS font-weight property. If you wish to indicate an element is of special importance, you should use the <strong> element.

  10. How to Make the Text Bold in HTML - W3docs

    How to Make the Text Bold in HTML In this snippet, you’ll see how to make the text bold by using the <strong> or <b> tags. Also, you can use the CSS font-weight property in the HTML part.