引入外部文件
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Css study</title>
<link rel="stylesheet" href="./01css.css">
</head>
使用内部 CSS 样式
<head>
<title>Css study</title>
<style type="text/css">
.css1 {
background-color: royalblue;
height: 50px;
}
</style>
</head>
行内样式
<div style="font-size: 40px;">
a big words
</div>