You can set the color of text:
Live Demo & Try it yourself!
Output
Text Color | Colors
You can set the color of text:
<!DOCTYPE html>
<html>
<head>
<Title>Text Color</Title>
</head>
<body>
<h3 style="color:Tomato;">HTML & CSS</h3>
<p style="color:DodgerBlue;" align="justify">
The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It defines the meaning and structure of web content. It is often assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.
</p>
<p style="color:MediumSeaGreen;" align="justify">
Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML or XML.
</p>
</body>
</html>