to change the color of text on a webpage, you use the CSS property font-color. True or False?
Answers
Answered by
0
Answer:
to change the colour of text on a webpage , you use the css property front -color . answer is true
Answered by
0
To change the color of text on a webpage, you use the CSS property font-color.- (False)
- Cascading Style Sheets (CSS) is a language for specifying the appearance of a document written in a markup language like HTML. Along with HTML and JavaScript, CSS is a key component of the World Wide Web.
- The property that is used to change the color of the text is "color ". The "color" is specified by: any HEX value - eg. "#ffa500." , any color name - like "orange" or an RGB value - like "rgb(255,165,0)" .
- Example : h1 { color: green;}
Similar questions