我有一个XHTML,其中包含样式表链接但不起作用,因为Validator说:
致命错误:必填字符(找到=)(预期;)
第10行,第69栏
= Raleway& subset = latin-ext'rel
这在HTML5中运行良好。我该怎么办?
这是我的代码的一部分:
<link href='https://fonts.googleapis.com/css?family=Raleway&subset=latin-ext' rel='stylesheet' type='text/css'></link>
谢谢。
答案 0 :(得分:1)
也许您应该使用htmlentity &
作为标志&#34;&amp;&#34;
我验证了以下代码没有错误:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
<title>Example</title>
<link href="https://fonts.googleapis.com/css?family=Raleway&subset=latin-ext" rel="stylesheet" type="text/css"></link>
</head>
<body>
<p>some text</p>
</body>
</html>
此致