Can you name three ways to define a color in html?

Submitted by: Muhammad
1) Hex
2) RGB
3) Name (ie red)

.colorMe {
color:red;
color:#ff0000;
color:rgb(0,0,255);
}
Submitted by: Muhammad

Read Online HTML Developer Job Interview Questions And Answers