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


color is a CSS property used to change the text color of an HTML element. It allows you to choose a color from a list of available values or specify a hex code, RGB, or RGBA to create a custom color.

There are many ways to define a value for color, including:


How to use


Example

HTML

<h1>Hello</h1>






CSS

h1 {
  color: red;
}






Result:

Hello


Experience


Hello



Read more
On This Page