1. CSS

CSS: Cascading Style Sheets
语法:
Selector {
property : value;
}
例:
div {
color: red;
}

2. 添加CSS到HTML方式

2.1 外部样式(模块化)

  1. <head>
  2. <link rel="stylesheet" href="my-style-sheet.css">
  3. </head>

标签中使用