Listing 9.6. Strona WWW, która zawiera trzy rodzaje stylów
<!DOCTYPE html>
<html>
  <head>
    <title>Ćwiczenie 9.1</title>
    <meta charset="UTF-8" />
    <link rel="stylesheet" href="style.css" />
    <style>
    h1 {
        color: red;
        background: green;
    }
    </style>
  </head>
<body>

<h1 style="color: yellow; background: blue">Kolejność stylów</h1>

</body>
</html>