html rgb color codes code example
Example 1: rgb purple color
(128,0,128) Hex #800080
Example 2: rgb yellow color
rgb(255,255,0) /* yellow*/ Hex #FFFF00
Example 3: 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>