Do you remember the styles chapter of the HTML micro-course? Back then we've used the style attribute to format HTML elements.

<html>
 <body style="font-family:verdana;">I need CSS treatment</body>
</html>
]]>

As if it were yesterday! Inline styles help us apply a unique style for a single HTML element.

Bear with me, we'll talk about the <style> tag in a second. In the meantime, let's use the style attribute!