example_of_css_1.html 628 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>CSS - 内部和外部样式表</title>
  6. <!-- 外部样式表 -->
  7. <link rel="stylesheet" href="css/style.css">
  8. <!-- 内部样式表 -->
  9. <style>
  10. * {
  11. border: 1px dashed black;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <!-- 内嵌样式表 -->
  17. <div id="header" style="background-color: gray;"></div>
  18. <h1 class="a"></h1>
  19. <h1 class="b"></h1>
  20. <h1 class="c"></h1>
  21. <h1 class="d"></h1>
  22. <h1 class="e"></h1>
  23. <h1 class="f"></h1>
  24. <h1 class="g"></h1>
  25. <p class="c h big">静夜思 - 李白</p>
  26. 床前明月光
  27. <div id="footer"></div>
  28. </body>
  29. </html>