0
How do you add color to HTML?
What do you need to write in HTML in order to color the text and the background?
2 Answers
+ 4
Using CSS
#elementId {
color : red;
background-color : blue;
}
+ 1
Thanks AJ
What do you need to write in HTML in order to color the text and the background?