3 Ways to Embed CSS in a Page

  1. Using the 'style' attribute
  2. Using the 'style' tag (it's usually nested inside the head tag)
    Put a 'style' tag in the head tag and the apply styles to div tags.
  3. Using an external .css file and linking to it (by using a link tag inside the head tag)
    Create a file called test.css and put a declaration in it to style h3 tags, then link to it from this page
This is a div tag (use it to set the 'style' attribute)
This is a div tag!
This is another div tag!

DON'T FORGET TO MOVE ALL THE CSS CODE INTO AN EXTERNAL STYLE SHEET (put a 'link' tag in the head)