Utah Web Design

How to make something BOLD with CSS

When designing a website sometimes you need to make items bold.  Any easy way to do this is to add the tag:

font-weight: bold;

into your CSS file or html tag.

<p style="font-weight: bold">BOLD</p>

becomes:

BOLD