W3验证错误“内容”“charset”

时间:2017-12-05 08:47:49

标签: html

我在我的网站上遇到过这两个问题。我已经修好了分配,但无法解决这些问题。我希望有人可以提供帮助

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta charset="utf-8" />
   <link rel="shortcut icon" href="favicon.ico"  />

<link rel="icon" type="image/gif" href="images/animated_favicon1.gif" />
<link href="opmaak.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Leerling 123</title>
</head>
<body>
<table summary="" class="hoofdtabel">
<tr>
  <td class="kop" colspan="2">Leerling 123</td>
</tr>
<tr>
  <td class="menu">
		<a href="home.html" target="inhoud" class="button">Home</a><br /><br />
		<a href="overmij.html" target="inhoud" class="button">Over mij</a><br /><br />
		<a href="hobby.html" target="inhoud" class="button">Hobby's</a><br /><br />
		<a href="foto.html" target="inhoud" class="button">Foto's</a><br /><br />
		<a href="video.html" target="inhoud" class="button">Video</a><br /><br />
		<a href="geluidsopname.html" target="inhoud" class="button">Geluidsopname</a><br /><br />
		<a href="rooster.html" target="inhoud" class="button">Rooster</a><br /><br />
	</td>
  <td class="inhoud">
	  <iframe class="frame" src="home.html" name="inhoud"></iframe>
	</td>
</tr>
<tr>
  <td class="onder" colspan="2">
		<a href="copyright.html" target="inhoud">Copyright</a>
		<a href="disclaimer.html" target="inhoud">Disclaimer</a>
		<a href="sitemap.html" target="inhoud">Sitemap</a>	
	</td>
</tr>
</table>
</body>
</html>

  

错误第4行,第24列:未指定必需属性“content”

     

<meta charset="utf-8" />

     

     

上面给出的属性是您使用过的元素所必需的,但您已将其省略。例如,在大多数HTML和XHTML文档类型中,“script”元素需要“type”属性,“img”元素需要“alt”属性。

     

类型的典型值为<style>的type =“text / css”和<script>的type =“text / javascript”。

     

错误第4行,第15列:没有属性“charset”          ✉   您在文档中使用了上面提到的属性,但您使用的文档类型不支持该元素的该属性。此错误通常是由于“Strict”文档类型与使用框架的文档的错误使用(例如,您必须使用“Transitional”文档类型来获取“target”属性)或使用供应商专有扩展(例如“ marginheight“(这通常通过使用CSS来实现所需效果来修复)。

     

如果您正在使用的文档类型不支持元素本身,也可能导致此错误,因为未定义的元素将不具有受支持的属性;在这种情况下,请参阅element-undefined错误消息以获取更多信息。

     

如何修复:检查元素和属性的拼写和大小写,(记住XHTML全是小写的)和/或检查它们是否都在所选文档类型中允许,和/或使用CSS代替此属性。如果在使用元素将Flash媒体合并到网页中时收到此错误,请参阅有效闪存上的FAQ项。

0 个答案:

没有答案