我一直在复制和粘贴HTML和CSS教程以尝试使这项工作,现在我有;
页面(HTML)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<body>
<h1>1This site</h1>
<p>Welcome to the this site</p>
</body>
</html>
的style.css
body {background-image:url(“Background.png”);}
h1 {font-family:Arial, sans-serif;}
当我在safari中加载html时,它仍然看起来没有格式化。
提前致谢!
答案 0 :(得分:0)
检查您是否正确设置路径 如果仍有问题,请尝试使用填充路径:
<link rel="stylesheet" type="text/css" href="http://127.0.0.1/test/style/style.css" />