Font-weight in CSS determines the boldness of the font. It is used to specify a font that is either bolder or lighter.
Some common values of font-weight include:
Example
HTML
<p>Hello</p>
CSS
p {
font-weight: bold;
}
Result:
Hello