Embedded Style Sheet Example

This is heading level 1

Paragraph

This is heading level 2

Paragraph

This is heading level 3

Here two style sheets are used. One uses grouping (commas) since the font family is the same for each heading level. The other defines the font sizes.

<style type="text/css">
   h1,h2,h3 { font-family: arial, sans-serif; }
</style>

<style type="text/css">
   h1 { font-size: xx-large;} 
   h2 { font-size: x-large;} 
   h3 { font-size: large;}      
</style>