我无法链接我的 CSS 样式表:
等级制度:
索引.html:
// index.html
<!DOCTYPE html>
<html>
<head>
<link href="css/index.css" type="text/css" rel="stylesheet">
</head>
<body>
<p class="blue">Hello</p>
</body>
</html>
索引.css:
// index.css
.blue {
font:blue;
font-size: 20px;
}