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>
- /* 内部样式表 */
- div {
- width: 200px;
- height: 200px;
- background: #00f;
- }
- </style>
- </head>
- <body>
- <!-- 行内 > 内部 > 外部 -->
- <!-- 行内样式/内联样式 -->
- <div></div>
- <!-- <div style="width: 200px;height: 200px;background-color: red;"></div> -->
- </body>
- </html>
|