Answer: 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;}
Step-by-step explanation: