CSS Color
The CSS color property specifies the color of the text.One method of specifying the color of the text is using a color name: like red, green, blue, etc.Here’s an example of changing the color of your font. HTML <p class=”example”>The text inside the paragraph is red.</p> The text outside the paragraph is black (by default). CSS p.example { […]
Continue Reading