03-outside.html 586 B

12345678910111213141516171819202122
  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. <!-- 连接到css文件 -->
  8. <!-- 绝对地址 -->
  9. <link href="/css/button.css" rel="stylesheet" type="text/css" />
  10. <!-- 相对地址 -->
  11. <!-- <link href="./css/button.css" rel="stylesheet" type="text/css" /> -->
  12. </head>
  13. <body>
  14. <!-- 外部样式表 outside -->
  15. <input type="button" value="按钮1" />
  16. <br />
  17. <br />
  18. <input type="button" value="按钮2" />
  19. </body>
  20. </html>