How to have different colour fonts on the same line
Back to HTML
You can use span style within a div tag
<div style="color: #f00"> Some red text and <span style="color: #00f">some more text </span> </div>
The resulting text would show this:
Some red text and some more text