1<!-- Check these best user friendly html color codes -->
2#1ca69d #e31ce0 #c13e72 #99b34d #3affb9
3#6c7093 #b35ba0 #1b1452
1<!-- Color in HTML by inline-css -->
2<p style="color: red; background-color: blue;">
3 This text is red and the background is blue
4</p>
1<!--
2The value for the color property can be set in three main ways:
3
4by color name, for example, red, green, blue
5by hexadecimal number: from #000000 to #ffffff
6by color code in the RGB palette: from rgb (0, 0, 0) to rgb(255, 255, 255)
7-->