// Possible CSS Styles for Controlling Fonts

// font family : font shape
      font-family : font-family: "Comic Sans MS",Arial,Helvetica,sans-serif;
      // List in order of preference.
      // You can guarantee that these fonts will be available: serif,
      // sans-serif, cursive, fantasy and monospace.
      // Never enclose these default font names in quotes.

// font size : how tall
      font-size : xx-small;
      font-size : x-small;
      font-size : small;
      font-size : medium;
      font-size : large;
      font-size : x-large;
      font-size : xx-large;
      font-size : larger;
      font-size : smaller;
      font-size : 1em;
      font-size : 1em/1.3em /* 1 em font, but leave room as if had used a 1.3 em font */;
//    no such thing as 1en !!
      font-size : 10px /* pixels */;
      font-size : 12pt /* points */;
      font-size : 110% /* relative to what it would have been otherwise */;
//    lesser used measures
      font-size : 1ex /* x-width */,
      font-size : .2cm /* centimetres */;
      font-size : 10mm /* millimetres */;
      font-size : .1in /* inch */;
      font-size : 110pc /* % relative to what it would have been otherwise */;

// font-weight : how bold
      font-weight : normal  /* 400 approx */;
      font-weight : bold    /* 700 approx.  It depends on font. */;
      font-weight : bolder  /* bolder than parent */;
      font-weight : lighter /* lighter than parent */;
      font-weight : 100     /* very light */;
      font-weight : 300     /* light, no such keyword */;
      font-weight : 400     /* same as normal */;
      font-weight : 700     /* same as bold */;
      font-weight : 900     /* very heavy */;

// font-style : slant
      font-style : normal;
      font-style : italic;
      font-style : oblique /* like italic but without the curliqueues */;

// font variant : small caps
      font-variant : normal;
      font-variant : small-caps  /* use all caps but with small letters for lower case */;

// font-stretch : how condensed
      font-stretch : normal;
      font-stretch : condensed;
      font-stretch : expanded;
      font-stretch : extra-condensed;
      font-stretch : extra-expanded;
      font-stretch : narrower;
      font-stretch : semi-condensed;
      font-stretch : semi-expanded;
      font-stretch : ultra-condensed;
      font-stretch : ultra-expanded;
      font-stretch : wider;