About 2,300,000 results
Open links in new tab
  1. CSS font-weight property - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, Python, Bootstrap, Java and XML.

  2. font-weight - CSS - MDN

    Nov 7, 2025 · The font-weight CSS property sets the weight (or boldness) of the font. The weights available depend on the font-family that is currently set.

  3. How to Bold Text in CSS (Complete Guide) - Life in Coding

    Making text bold in CSS is a fundamental styling technique that enhances readability, highlights key points, and improves user experience. CSS provides multiple ways to bold text, depending …

  4. CSS Bold – How to Bold Text in HTML with Font Weight

    Mar 2, 2023 · In this article, you will learn how to use CSS to make text bold in HTML using the font-weight property. Whether you're a beginner or an experienced developer, this article will …

  5. How to bold the text using CSS ? - GeeksforGeeks

    Oct 8, 2024 · In HTML, we use the <b> and <strong> tags to make content bold. However, when it comes to styling text, CSS provides a more versatile way to achieve boldness through the …

  6. How to Bold Text in CSS - htmlallthethings.com

    Aug 8, 2025 · Learn how to bold text in CSS using the font-weight property. Explore bold values, inline vs external styles, and common mistakes to avoid.

  7. How to Make Text Bold in HTML & CSS - Elementor

    Dec 27, 2025 · HTML tags give you a quick and easy way to bold text, but for more control and flexibility, CSS (Cascading Style Sheets) is king. With CSS, you can apply bold styles to …

  8. HTML Styles - W3Schools

    Learn how to style HTML elements using CSS with examples and tutorials on W3Schools.

  9. CSS How to Make Text Bold - TechBloat

    Jan 3, 2026 · To make text bold with CSS, simply set the font-weight property to bold or a numeric value like 700. For example: p { font-weight: bold; } or p { font-weight: 700; } Understanding …

  10. CSS: How to Bold Text (3 Simple Ways) - Life in Coding

    Bolding text in CSS is quick and easy, but how you bold it depends on your goals—styling, structure, or meaning. Use font-weight for full styling control, and prefer semantic HTML tags …