Cascading Style Sheets

The Cascade

  <head>
    <style type="text/css">
      .green {color: green}
      a {color: yellow;}
      h1 {color: red;}
      h1 {color: blue;}
    </style>
  </head>
  <body>
    <h1>This is blue <a href="/">this is yellow</a></h1>
    <h1 class="green">This is green</h1>
  </body>

José M. Vidal .

5 of 14