HTML color to text
<body>
<p style="color:#FF0000";>Red paragraph text</p>
</body>
<body>
<!-- style color (hex color) + the text -->
<h1 style ="color: #000000; "> Apples <em>is a tech company</em></h1>
</body>
<font color="red">This is some text!</font>
<body>
<p style="color:#FF0000";>Roses are red</p>
<p style="color:#800080";>Violets are blue</p>
</body>