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

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -