+ 3
I have. Doubt in html colors.how do u know the code for the colors?
5 Answers
+ 14
you can check the code of the color on "wh3-schools-colors"
+ 13
you are welcome bro
+ 4
hexadecimal is
#rrggbb, with r being red, g green and b blue.
0 means nothing of that color and F is the most
so:
#FF0000 = red
#00FF00 = green
#0000FF = blue
rgb is
rgb(r, g, b), with r being red, g green and b blue
0 means nothing of that color and 255 thr most
so:
rgb(255, 0, 0) = red
rgb(0, 255, 0) = green
rgb(0, 0, 255) = blue
+ 2
ohk thnx
+ 1
oh thnx