The font-weight property repesents that how thick or thin characters in text should be displayed.
Example of Code
<style>
.example-CSS-Font-Weight-paragraph{
font-weight: bold;
}
</style>
<p class="example-CSS-Font-Weight-paragraph">This text is bold.</p>
Output
This text is bold.
