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