HTML代码:
<!DOCTYPE html>
<html lang="no">
</head>
<title>Thomas</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<h4>A major headline</h4>
<p> Some text
CSS:
body {
font-family: monospace;
}
出于某种奇怪的原因,当我尝试加载此页面时,我的css属性不会显示。 html文件保存为thomas.html,而css文件保存为style.css与thomas.html相同的文件夹
为什么它不起作用? :(
答案 0 :(得分:2)
您已关闭<head>
代码两次,而不是第一次应该是这样
<head>
,我只是一个错字错误,我猜你很清楚它是正确的
答案 1 :(得分:1)
你正在做</head></head>
..这应该是<head></head>