How to link Pages in a website built using HTML & CSS Style -


this code. how link pages ourevents.html, gallery.html, about.html, contaact.html? please

<div id="menu">             <ul>                 <li class="active"><a href="#" accesskey="1" title="">homepage</a></li>                 <li><a href="#" accesskey="2" title="">our events</a></li>                 <li><a href="#" accesskey="3" title="">gallery</a></li>                 <li><a href="#" accesskey="4" title="">about us</a></li>                 <li><a href="#" accesskey="5" title="">contact us</a></li>             </ul>         </div> 

assuming current page index.html:

<div id="menu">     <ul>         <li class="active"><a href="index.html" accesskey="1" title="">homepage</a></li>         <li><a href="ourevents.html" accesskey="2" title="">our events</a></li>         <li><a href="galery.html" accesskey="3" title="">gallery</a></li>         <li><a href="about.html" accesskey="4" title="">about us</a></li>         <li><a href="contact.html" accesskey="5" title="">contact us</a></li>     </ul> </div> 

Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -