CSS: 匯入 CSS 樣式表
每次都會忘記要如何匯入,乾脆直接記下來XD
樣式表和首頁放一起href="styles.css"
├── style.css
└── index.html
<link rel="stylesheet" type="text/css" href="style.css">
樣式表放在資料夾中,要把路徑也加進去href="css/style.css"
。
├── css
| └── style.css
└── index.html
<link rel="stylesheet" type="text/css" href="css/style.css">
順便也記一下其他加入CSS的方法。
- 直接添加在HTML Tag中
<h1 style="text-align: center;">Title</h1>
- 加在
<head></head>
中
<!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>Document</title>
<style>
h1 {
text-align: center;
}
</style>
</head>
<body>
<h1 style="text-align: center;">Title</h1>
</body>
</html>