CSS Import(CSS引用方式) | CSS
3種 CSS 在 HTML 中引用的方式
CSS 3種使用的方式
- 內部樣式
- 內聯樣式(不推薦使用)
- 外部樣式
See the Pen CSS Import(CSS引用方式)-CSS by lenrich (@lenrich) on CodePen.
範例
./index.html
<!DOCTYPE html>
<html lang="en">
<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>
/* 內部樣式 */
h2 {
color: green;
}
</style>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<!-- 內聯樣式(不推薦使用) -->
<h1 style="color: red">標題一</h1>
<h2>標題二</h2>
<h3>標題三</h3>
</body>
</html>
./style.css
/* 外部樣式 */
h3 {
color: orange;
}
Tags