Move layout setting to CSS as many as possible!

This is a Green Title (Wrong Way)

<h1><font color="green">This is a Green Title (Wrong Way)</font></h1>

This is a Green Title (Right Way)

<style>
.titleHighlight{
	color:green;
	}
</style>

<h1 class="titleHighlight">This is a Green Title (Wrong Way)</h1>