|
|
HTML Text Color Code
You can use the following HTML code to specify colors for text within your HTML documents.
To define text color in HTML you should use CSS (Cascading Style Sheets).
Setting Text Color using Inline Styles:
<p>Normal text color <span style="color:green">different text color</span> normal text color</p>
This code results in:
Normal text color different text color normal text color
|