2012-05-31 207 views
0

嘿,我正在通過W3C驗證器運行我的索引頁,並得到6錯誤,需要一些幫助。的錯誤是: -需要幫助幾個驗證錯誤

Line 57, Column5: error parsing attribute name 
Line 57, Column 5: attributes construct error 
Line 57, Column 5: Couldn't find end of Start Tag div line 56 
Line 67, Column 14: Opening and ending tag mismatch: body line 14 and div 
Line 69, Column 11: Opening and ending tag mismatch: html line 4 and body 
Line 70: Extra content at the end of the document 

這是我的代碼: -

<?xml version="1.0" encoding="utf-8"?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 

<head> 

    <link rel="stylesheet" type="text/css" href="CSS/10000658.css" title="default" /> 
    <link rel="alternate stylesheet" type="text/css" href="CSS/default.css" title="assignment2" /> 

    <title>The Garden Co. | Home </title> 
</head> 

<body> 
    <div id="wrapper"> 
     <div id="header"> 
      <h1>The Garden Co.</h1> 
     </div> 

      <div id="menu"> 

        <h1>Contents</h1> 

        <ul> 
       <li><a href="index.html">Home</a></li> 
         <li> 
          <a href="plants_section/index.html">Catalogue</a> 
          <ul> 
           <li><a href="plants_section/plant1.html">Plant 1</a></li> 
           <li><a href="plants_section/plant2.html">Plant 2</a></li> 
           <li><a href="plants_section/plant3.html">Plant 3</a></li> 
          </ul> 
         </li> 

         <li> 
          <a class="section" href="plants_section/index3.html">Report</a> 

         </li> 

      <li> 
          <a class="section" href="plants_section/index4.html">Report(2)</a> 

         </li> 


         <li><a class="section" href="plants_section/form.html">Contact</a></li> 

        </ul> 

       </div><!-- end menu --> 

       <div id="content"> 
       <div id="contentWrapper"> 
        <h1>Welcome</h1> 

        <div class="text" 
        ***<p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus sed eros quis leo sollicitudin tempus. </p>*** 

       </div> 
      ***</div><!-- end contentWrapper -->*** 
      </div><!-- end content --> 

      <div id="footer"> 
       <p>&copy; My name, 2012.</p> 
      </div> 

     </div><!-- end wrapper --> 

***</body>*** 
***</html>*** 

如果有人可以幫助解決這些錯誤,將不勝感激。編輯:粗線是當發現錯誤

+2

如果您以某種方式突出顯示或標記了與錯誤相對應的行,它將有所幫助。 – Patricia

+0

錯誤信息非常清楚你做錯了什麼。你爲什麼不嘗試尋找解決方案? –

+0

我在包含錯誤的所有行上使用了粗體(***),+ @JohannesKlauß在訴諸別人尋求幫助之前,我已經嘗試了很長一段時間 –

回答

4

你沒有關閉<div>標籤上的57行:

<div class="text" 
+0

非常感謝@John Conde,它修復了每個錯誤。 –

1

我可以看到你的DIV標籤未關閉在線57:

應該是: <div class="text">

1

看起來這是大多數你的問題的原因:

<div class="text" 
        <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus sed eros quis leo sollicitudin tempus. </p> 

大概應該是:

<div class="text"> 
    <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus sed eros quis leo sollicitudin tempus. </p> 
</div><!--this is already there, just the tabbing is off so it looked like it was missing--> 

解決這個問題,然後重新運行它。讓我們知道什麼是錯誤。

1

開始在這裏固定的標籤:

<div class="text" 
    <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus sed eros quis leo sollicitudin tempus. </p> 

需要關閉標籤,所以應該改爲:(缺少「>」)

<div class="text"> 

重新運行它,然後,讓我們知道結果。

+0

哈哈。愛,4人在30秒內發佈這一切。 – matthewvb