| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <!--
- link 链接外部样式
- rel 关系
- stylesheet 样式表
- href 路径
- -->
- <!-- 外部样式表 -->
- <link rel="stylesheet" href="./index.css">
- <style>
- /* 内部样式表 */
- /* h1 {
- color: blue;
- } */
- </style>
- </head>
- <body>
- <div>
- <!-- 内联样式、行内样式 -->
- <h1>aaa</h1>
- <!-- <h1 style="color: red;">你好</h1> -->
- <!-- <h2>哈哈</h2>
- <h3>大家好</h3> -->
- </div>
- </body>
- </html>
|