01 行内
<!DOCTYPE html>
<html lang="zh-cn">
<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行内样式</title>
</head>
<body>
<h3>
<font color="red">啦啦啦01</font>
</h3>
<h3>
<font color="red">啦啦啦02</font>
</h3>
<h3>
<font color="red">啦啦啦03</font>
</h3>
<h3 style="color: #00FF00;">啦啦啦04</h3>
<h3 style="color: #00FF00;">啦啦啦05</h3>
<h3 style="color: #00FF00;">啦啦啦05</h3>
</body>
</html>
02 内部
<!DOCTYPE html>
<html lang="zh-cn">
<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内部样式</title>
<style>
h3 {
color: #00FF00;
}
</style>
</head>
<body>
<h3>啦啦啦01</h3>
<h3>啦啦啦02</h3>
<h3>啦啦啦03</h3>
</body>
</html>
03 外部
<!DOCTYPE html>
<html lang="zh-cn">
<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内部样式</title>
<link rel="stylesheet" href="./css/03.css">
</head>
<body>
<h3>啦啦啦01</h3>
<h3>啦啦啦02</h3>
<h3>啦啦啦03</h3>
</body>
</html>
h3 {
color: #00FF00;
}