2017-11-22 3 views
-2

나는 내 사이트의 개발 단계에 있습니다. w3cvalidator를 사용하여 내 페이지의 유효성을 검사하려고하면 다음 오류가 표시됩니다. 그러나 다음과 같은 행동을 시도 할 때; </nav 태그를 닫으면 더 많은 오류 만 생성됩니다.HTML 유효성 검사 오류 "종료 태그 탐색이 표시되었지만 열려있는 요소가 있습니다." 및 "Unclosed element ul."

빠른 해결 방법이 있습니까? 이상적으로, 나는 나의 페이지가 100 %를 유효하게하고 싶다.

W3c 검사기 오류 아래에서

Error
Unclosed element ul.
From line 33, column 11; to line 33, column 43

<ul class="topnav" id="myTopnav">↩ 

Error
End tag nav seen, but there were open elements.
From line 41, column 9; to line 41, column 14

>↩  </nav>↩ 

여기

<!DOCTYPE html> 
<html lang="en"> 
<head> 
    <title>DB Plumbing | Home</title> 
    <link rel="stylesheet" type="text/css" href="style.css"> 
    <script src="https://use.fontawesome.com/3a2264e344.js"></script> 
    <script src="html9shiv.js"></script> 
    <link rel="shortcut icon" type="image/png" href="wrench.png"/> 
    <meta charset="utf-8"> 
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> 
    <meta name="desciption" content = "Darran Brady Plumbing"> 
    <meta name="keywords" content = "Plumbing, Boilers, Showers, Central Heating, Kitchens, Bathrooms, Installations, Landlord Services, Horsham, West Sussex, Sussex,Barns Green, Billingshurst,Broadbridge Heath,Christ's Hospital, Clemsfold, Copsale,Colgate,Cowfold, Faygate, Handcross, Horsham, Itchingfield, Kingsfold,Lambs Farm,Lower Beeding,Mannings Heath, Maplehurst, Monks Gate, Nuthurst, Partridge Green, Pease Pottage, Roffey, Rowhook, Rusper, Rudgwick, Southwater, Slinfold, Warnham "> 
    <meta name = "author" content ="DB, Darran, Brady, Darran Brady"> 
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
    <script> 
function myFunction() { 
var x = document.getElementById("myTopnav"); 
if (x.className === "topnav") { 
x.className += " responsive"; 
} else { 
x.className = "topnav"; 
} 
} 
</script> 
</head> 
    <body> 
    <header> 
     <div class="container"> 
     <div id="branding"> 
      <h1><span class="highlight">DB</span> Plumbing</h1> 
     </div> 
     <nav> 
      <ul class="topnav" id="myTopnav"> 
      <li class="active"><a href="home9.html">Home</a></li> 
      <li><a href="about9.html">About</a></li> 
      <li><a href="services9.html">Services</a></li> 
      <li><a href="coverage9.html">Coverage</a></li> 
      <li><a href="contact9.html">Contact</a></li> 
      <li class="icon"> 
<a href="javascript:void(0);" style="font-size:200%;" onclick="myFunction()">☰</a> 
     </nav> 
     </div> 
     </header> 

    <section id="showcase"> 
     <div class="container"> 
     <h1>Local Award Winning Trader</h1> 
     <h2>Call Darren | <i class="fa fa-phone" aria-hidden="true"></i><a href="tel:+07756848657"> 07756848657</a></h2> 
     <p>DB Plumbing provides a full range of general plumbing and repair services, from installing your new bathroom suite to fixing that leaking tap or joint that has been annoying you for ages. </p> 

     <p>Our customer's individual requirements are important to us at DB Plumbing. We always provide quality service and products and combined with honesty has made us the first choice of many homes in the Horsham area</p> 
     </div> 
    </section> 

    <section id="newsletter"> 
     <div class="container"> 
     <h1>Subscribe To Our Weekly Blog</h1> 
     <form> 
      <input type="email" placeholder="Subscribe today..."> 
      <button type="submit" class="subscribe">Subscribe</button> 
     </form> 
     </div> 
    </section> 

    <section id="imagery"> 
    <div class="container"> 
    <div class="box"> 
    <i class="fa fa-star" aria-hidden="true"></i> 
    <h1>Accredited</h1> 
    <p>Gas Safe Accreditted </p> 
</div> 
    <div class="box"> 
    <i class="fa fa-thumbs-up" aria-hidden="true"></i> 
    <h1>Reputable</h1> 
    <p>"25 years service experience "</p> 
    </div> 
     <div class="box"> 
     <i class="fa fa-map-marker" aria-hidden="true"></i> 
     <h1>Local</h1> 
     <p>Sussex and Surrey Countywide</p> 
     </div> 
     </div> 
</section> 

    <footer> 
    <div> 
     <p>Darren Brady Plumbing Copyright &copy; 2017</p> 
     </div> 
    </footer> 
    </body> 
</html> 

답변

2

</nav>을 닫기 전에 </li></ul>을 넣어 내 HTML이며, 오류 메시지가 그것에 대해 매우 분명한 것 같다.

+0

나는 앵커 태그가 li.icon 요소에 속한다고 생각합니다. 그래서 나는 그 후에 그것을 넣을 것이다. –

+0

@SergioTx, 의미가 있습니다. 답변을 업데이트하겠습니다. –

0

<nav> 섹션의 2 개의 태그가 닫혀 있지 않아야하므로 페이지에 오류가 있습니다. 코드의 간단한 분석은 오류를 보여줍니다

<nav> 
 
    <ul class="topnav" id="myTopnav"> 
 
    <li class="active"><a href="home9.html">Home</a></li> 
 
    <li><a href="about9.html">About</a></li> 
 
    <li><a href="services9.html">Services</a></li> 
 
    <li><a href="coverage9.html">Coverage</a></li> 
 
    <li><a href="contact9.html">Contact</a></li> 
 
    <li class="icon"> 
 
<a href="javascript:void(0);" style="font-size:200%;" onclick="myFunction()">☰</a> 
 
</nav>

그래서 그것이 있어야 : 당신은 누락

<nav> 
    <ul class="topnav" id="myTopnav"> 
    <li class="active"><a href="home9.html">Home</a></li> 
    <li><a href="about9.html">About</a></li> 
    <li><a href="services9.html">Services</a></li> 
    <li><a href="coverage9.html">Coverage</a></li> 
    <li><a href="contact9.html">Contact</a></li> 
    <li class="icon"> 
     <a href="javascript:void(0);" style="font-size:200%;" onclick="myFunction()">☰</a> 
    </li> 
    </ul> 
</nav> 
0

당신은 <li class=icon><ul class=topnav>을 닫지 않았다 닫기 ul 및 li 태그 :

<!DOCTYPE html> 
 
<html lang="en"> 
 

 
<head> 
 
    <title>DB Plumbing | Home</title> 
 
    <link rel="stylesheet" type="text/css" href="style.css"> 
 
    <script src="https://use.fontawesome.com/3a2264e344.js"></script> 
 
    <script src="html9shiv.js"></script> 
 
    <link rel="shortcut icon" type="image/png" href="wrench.png" /> 
 
    <meta charset="utf-8"> 
 
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> 
 
    <meta name="desciption" content="Darran Brady Plumbing"> 
 
    <meta name="keywords" content="Plumbing, Boilers, Showers, Central Heating, Kitchens, Bathrooms, Installations, Landlord Services, Horsham, West Sussex, Sussex,Barns Green, Billingshurst,Broadbridge Heath,Christ's Hospital, Clemsfold, Copsale,Colgate,Cowfold, Faygate, Handcross, Horsham, Itchingfield, Kingsfold,Lambs Farm,Lower Beeding,Mannings Heath, Maplehurst, Monks Gate, Nuthurst, Partridge Green, Pease Pottage, Roffey, Rowhook, Rusper, Rudgwick, Southwater, Slinfold, Warnham "> 
 
    <meta name="author" content="DB, Darran, Brady, Darran Brady"> 
 
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
 
    <script> 
 
    function myFunction() { 
 
     var x = document.getElementById("myTopnav"); 
 
     if (x.className === "topnav") { 
 
     x.className += " responsive"; 
 
     } else { 
 
     x.className = "topnav"; 
 
     } 
 
    } 
 
    </script> 
 
</head> 
 

 
<body> 
 
    <header> 
 
    <div class="container"> 
 
     <div id="branding"> 
 
     <h1><span class="highlight">DB</span> Plumbing</h1> 
 
     </div> 
 
     <nav> 
 
     <ul class="topnav" id="myTopnav"> 
 
      <li class="active"><a href="home9.html">Home</a></li> 
 
      <li><a href="about9.html">About</a></li> 
 
      <li><a href="services9.html">Services</a></li> 
 
      <li><a href="coverage9.html">Coverage</a></li> 
 
      <li><a href="contact9.html">Contact</a></li> 
 
      <li class="icon"><a href="javascript:void(0);" style="font-size:200%;" onclick="myFunction()">☰</a></li> 
 
     </ul> 
 
     </nav> 
 
    </div> 
 
    </header> 
 

 
    <section id="showcase"> 
 
    <div class="container"> 
 
     <h1>Local Award Winning Trader</h1> 
 
     <h2>Call Darren | <i class="fa fa-phone" aria-hidden="true"></i><a href="tel:+07756848657"> 07756848657</a></h2> 
 
     <p>DB Plumbing provides a full range of general plumbing and repair services, from installing your new bathroom suite to fixing that leaking tap or joint that has been annoying you for ages. </p> 
 

 
     <p>Our customer's individual requirements are important to us at DB Plumbing. We always provide quality service and products and combined with honesty has made us the first choice of many homes in the Horsham area</p> 
 
    </div> 
 
    </section> 
 

 
    <section id="newsletter"> 
 
    <div class="container"> 
 
     <h1>Subscribe To Our Weekly Blog</h1> 
 
     <form> 
 
     <input type="email" placeholder="Subscribe today..." /> 
 
     <button type="submit" class="subscribe">Subscribe</button> 
 
     </form> 
 
    </div> 
 
    </section> 
 

 
    <section id="imagery"> 
 
    <div class="container"> 
 
     <div class="box"> 
 
     <i class="fa fa-star" aria-hidden="true"></i> 
 
     <h1>Accredited</h1> 
 
     <p>Gas Safe Accreditted </p> 
 
     </div> 
 
     <div class="box"> 
 
     <i class="fa fa-thumbs-up" aria-hidden="true"></i> 
 
     <h1>Reputable</h1> 
 
     <p>"25 years service experience "</p> 
 
     </div> 
 
     <div class="box"> 
 
     <i class="fa fa-map-marker" aria-hidden="true"></i> 
 
     <h1>Local</h1> 
 
     <p>Sussex and Surrey Countywide</p> 
 
     </div> 
 
    </div> 
 
    </section> 
 

 
    <footer> 
 
    <div> 
 
     <p>Darren Brady Plumbing Copyright &copy; 2017</p> 
 
    </div> 
 
    </footer> 
 
</body> 
 

 
</html>

관련 문제