Can anyone help me how to write colour code in html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can anyone help me how to write colour code in html

24th Nov 2016, 6:45 AM
jordan komba
jordan komba - avatar
3 Answers
+ 2
there are many ways one popular one is hexadecimal code I think which you meant see it is just mathematics the code tells amount of red green blue between range 0-255 0-12.7. that is 00 to F F so if there is red it is #FF0000 becuase all red no green no blue darkred #AA0000 black #000000 then white #FFFFFF grey #AAAAAA you can use tools to choose or you can get online services like colour picker of w3schools
24th Nov 2016, 12:07 PM
Sandeep Chatterjee
0
Can you clarify a little? What're you trying to do?
24th Nov 2016, 6:59 AM
Hazel "Joey" Pickett
Hazel "Joey" Pickett - avatar
0
<BODY BGCOLOR=________> <FONT COLOR=________> Of course, CSS is a better way to handle these things. Nevertheless, that is how with the pure HTML approach. Note that the colors may be identified by your choice of 3 methods: Color name (red, black, cornflowerblue) Color Hex code (#ff0000) Color RGB (rgb(255,0,0)) and yes, CornFlowerBlue is indeed a real color in HTML.
24th Nov 2016, 7:48 AM
Matthew Shephard
Matthew Shephard - avatar