CSS Example


<!-- 
ELEMENT {
  property1 : value1;
  property2 : value2;
  ...
}
-->>


H1 {
  color: red;
  font-size: 48pt;
}
H2 {
  color: blue;
  font-size: 32pt;
}

B, STRONG {
  font-weight: bolder;
}

#xyz {
  font-family: courier, helvetica;
}

.big {
  font-size: larger;
}

EM.no {
  font-style: normal;
}

H2 EM {
  color: yellow;
}