我不知道为什么我的html没有响应我的样式表。请帮忙! html和样式表都在同一个文件夹中。
<!DOCTYPE html>
<html>
<head>
<title>First try</title>
<link type=“text/css” rel=“stylesheet” href=“stylesheet.css”/>
</head>
<body>
<h1>My first html </h1>
<p>I wish it works!</p>
</body>
</html>
答案 0 :(得分:2)
简单,因为所有的引号“ ”
。
将它们更改为常规引号"
。
并且不使用Word代码(或类似的处理软件),使用代码编辑器。
修改强>
所以,作为(免费)服务给你;完全复制/粘贴如下所示:
<!DOCTYPE html>
<html>
<head>
<title>First try</title>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
</head>
<body>
<h1>My first html</h1>
<p>Now it works!</p>
</body>
</html>
CSS:(stylesheet.css)
body {
font-family: Georgia;
}