How many away I can colored front and background color? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How many away I can colored front and background color?

Please give me some example.

4th Apr 2017, 6:03 AM
Mahmudul Hasan Fahim
Mahmudul Hasan Fahim - avatar
1 Answer
+ 3
1. Using color name, but you have make sure that color is spelled out correctly example body { background-color:palegoldenrod; color:chocolate; /*yammy text color*/ } 2. Using hexadecimal color code made up of primary colors viz red, green, and blue in format #rrggbb example body { background-color:#a45e67; color:#000 ; /*black */ } 3. Using rgb () function by specifying values for red, green, and blue color within range of 0-255 example body { background-color:rgb(255,0,0); color:rgb (255,255,255) ; /*white*/ }
4th Apr 2017, 6:33 AM
देवेंद्र महाजन (Devender)
देवेंद्र महाजन (Devender) - avatar