练习仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
647 B

2 days ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. a{
  9. color:orange;
  10. font-size: 30px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <p style="color: red; font-size: 20px;">这是内联样式</p>
  16. <!-- 缺点:缺乏整体性和规划性,不利于维护 -->
  17. <a>这是内部样式</a>
  18. <!-- 再单个页面实现了统一维护和管理,但是再多个页面上会显得不够统一,混乱 -->
  19. <a href="./cssstudy2.html">点击跳转外部样式</a>
  20. </body>
  21. </html>