html - Showing reference link in whole page -


i'm learning step step website. in navigation section, i'm linking home, us, contact us, rates, services pages using code, when link on , rates pages, whole content text page linked directing contact page. don't know what's wrong code unlink body content of page keeping regular nav link. here's code page of rates page uses same code format. post both pages' codes if necessary. thanks.

    <!doctype html> <html lang="en">   <head>     <meta charset="utf-8">     <meta http-equiv="x-ua-compatible" content="ie=edge">       <title>about us: home cleaning services in sf bay area</title>       <!-- custom styles template -->     <link href="css/style.css" rel="stylesheet">   </head>    <body>     <header>         <nav>             <ul>                 <li><a href="index.html">home</li>                 <li><a href="about us.html">about us</li>                 <li><a href="services.html">services</li>                 <li><a href="rates.html">rates</li>                 <li><a href="contact us.html">contact us</li>              </ul>         </nav>     </header>     <h2>we talk cleaning</h2>         <p>with growing economy , vibrant style of life, sf bay area has become home professionals, families, artists , wants part of great region. due this, it’s difficult devote time clean or organize our space live or work. ourselves clean our stubborn room or bathroom, don’t because don’t have time or least thing in free time obstinate place.</p>          <p> sparking cleaning services, we’ll make life easier providing spotless , clean place work or relax. 1 less thing worry in life.</p>          <img src="images/100_0016.jpg" alt="san francisco view">   </body>   <footer>all rights reserved 2016</footer> </html> 

the correct form be

<li><a href="index.html">home</a></li> <li><a href="about us.html">about us</a></li> <li><a href="services.html">services</a></li> <li><a href="rates.html">rates</a></li>  <li><a href="contact us.html">contact us</a></li>  

the reason code not working because th e <a> tag includes between starting , closing tags since your'e not closing turning whole content of html page link


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -