In HTML4, it used to be just
<html>
<body>
<font color="tomato">ABC</font> <font color ="blue">Airlines</font>
</body>
</html>
But apparently, it's non-functional in html5. In the w3schools tutorial, it says that we should use -
<!doctype html>
<html>
<body>
<p style="color:red">This is a paragraph.</p>
</body>
</html>
but I can't change the font individually of 2 words in the same line. What do I do? I don't want to use div for this.