colorcode for css code example
Example 1: red css color codes
Following could be the CSS color codes which you can use in your CSS File
1. You can write simply "Red".
2. #FF0000
3. #F00
4. RGB(255, 0, 0)
Example 2: color in html
<!-- Color in HTML by inline-css -->
<p style="color: red; background-color: blue;">
This text is red and the background is blue
</p>