W3错误验证错误

时间:2015-07-25 18:39:03

标签: html

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Home-International Student Home Page</title>
<link href="cssstyle.css" rel="stylesheet">
</head>
<body>

<h3>About Image:</h3>
<p>Monroe College Logo</p>



<h1><a href="http://www.monroecollege.edu:">
<img src="monroelogo.jpg"  alt="" height="115" width="700"/></a> 
</h1>   

<h2>International Students Association</h2>


<!-- Top navigation -->
<div class="nav" align="center">
<a href="Homepage.html">Home Page</a>|
<a href="International Student Community.html">International Students Community</a>| 
<a href="Form.html">Registration Form</a> |  
<a href="Scholarship.html">Scholarships</a>|
 </div

我遇到这些错误的问题。有人可以帮我解决这个问题。以下代码是来自W3验证器的错误消息: -

信息:Content-Type是text / html。使用HTML解析器。

2.Info:使用带有SVG 1.1,MathML 3.0,RDFa 1.1和ITS 2.0支持的HTML架构。

3.警告:空标题。

从第15行第1栏;到第15行,第4栏

↩↩↩↩

4.Error:div元素的align属性已过时。改用CSS。

从第23行第1栏;到第23行,第32栏

ation - &gt;↩↩

5.错误:对于元素a的属性href,国际学生社区的错误值:路径段中的非法字符:不是URL代码点。

从第25行第1栏;至第25行,第47栏

页|↩Intern URL语法:任何URL。例如:/ hello,#scanvas或http://example.org/。字符应以NFC表示,空格应以%20表示。

1 个答案:

答案 0 :(得分:1)

1和2只是关于你的页面的信息

3有警告因为在alt="logo"中你必须写一个像align="center"

这样的alt

4您必须从div移除margin-left:auto;并在nav

中的css文件中添加International_Student_Community.html

5在名称文件和url中说不要使用空格重命名你的文件,如<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>Home-International Student Home Page</title> <link href="cssstyle.css" rel="stylesheet"> </head> <body> <h3>About Image:</h3> <p>Monroe College Logo</p> <h1><a href="http://www.monroecollege.edu:"> <img src="monroelogo.jpg" alt="logo" height="115" width="700"/></a> </h1> <h2>International Students Association</h2> <!-- Top navigation --> <div class="nav"> <a href="Homepage.html">Home Page</a>| <a href="International_Student_Community.html">International Students Community</a>| <a href="Form.html">Registration Form</a> | <a href="Scholarship.html">Scholarships</a>| </div> </body> </html>

此页面没有任何错误

i
相关问题