If you're new here, you may want to subscribe to my RSS feed. So that you can read the latest updates about Web2.0 tools, Making Money Online, Tips in SEO, Ajax and many more. Thanks for visiting ProgramimiCOM!

Elements are not limited to only one class, you can easily declare multiple ones, all you need to do is seperate the classes with a space.

<style type=‘text/css’>
.highlight
{
background-color:yellow;
}.heavy
{
font-weight:bold;
}
</style>
<p>The most important thing to remember is <span class=‘heavy highlight’>my birthday</span>!</p>

That easy!