02-XX-order-of-stylesheets.html 346 B

12345678910111213141516171819
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Order of stylesheets</title>
  6. <link rel="stylesheet" href="css/sheet1.css">
  7. <style>
  8. @import 'css/sheet3.css';
  9. h1 {
  10. color: fuchsia;
  11. }
  12. </style>
  13. <link rel="stylesheet" href="css/sheet2.css">
  14. </head>
  15. <body>
  16. <h1>What color am I?</h1>
  17. </body>
  18. </html>