Welcome ðŸŽ‰

logo

ReactLMS

Search
Light Mode
Contact Us

2 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Concept


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:


Usage


Example

HTML

<p>Hello</p>






CSS

p {
  font-weight: bold;
}






Result:

Hello


Experience


Hello



Read more
On This Page