23_引入css.html 397 B

12345678910111213
  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. <!-- link 引入外部文件 rel表明引入的文件类型 stylesheet样式表 href引入外部文件的地址 -->
  8. <link rel="stylesheet" href="./index.css">
  9. </head>
  10. <body>
  11. <div class="box"></div>
  12. </body>
  13. </html>