+ 7
How to identify the colours in html
6 Réponses
+ 5
but can u give an example of one any colour
+ 5
An example #ffffff is for white color.
+ 5
Check my code for help
https://code.sololearn.com/W5aH2OKguegv/?ref=app
+ 4
Apart from using color names, colors can be identified using hexadecimal values (e.g #000000). The easiest way to identify these codes is by using html color pickers, available online.
You can find one in this website: www.w3schools.com
+ 4
thank u
+ 4
Leekitha Shetty,
In additional to NATHAN's answer,
Hope this helps👍👍
RGB;
R = Red
G = Green
B = Blue
#RRGGBB
#RGB
HEX Syntax:
0123456789ABCDEF
A = 10
B = 11
C = 12
D = 13
E = 14
F = 15
HEX has 16 valid bytes/numbers.
#FFFFFF
#FFF is white
#000000
#000 is black
https://www.sololearn.com/discuss/1488663/?ref=app