Hi,
I have started re-building my flash website into html for many reasons...
I only have part of the basic structure at the moment but am having a problem with my menu.
I have:
Home : page2 : page 3 : Page 4
on the home page, when i click "page2" it takes me to a Zymic.com error 404 page not found.
here is my HTML for the menu
<div id="menu"><m1>
<ul>
<li class="first"><a href="#" accesskey="1" title="">Home</a></li>
<li><a href="Page4.html" title="">Page2</a></li>
<li><a href="#" title="">Page3</a></li>
<li><a href="#" title="">Page4</a></li>
</ul>
</div>
and when on page 2:
<div id="menu"><m1>
<ul>
<li class="first"><a href="#" accesskey="1" title="">Home</a></li>
<li><a href="Page4.html" title="">Page2</a></li>
<li><a href="#" title="">Page3</a></li>
<li><a href="#" title="">Page4</a></li>
</ul>
</div>
The Page2.html is in the root folder like the home page...
can anyone help?