<ul>
<li>Home</li>
<li><a href="m3about.html">About</a></li>
</ul>
Hi Spacey,
Need to close the a href tag like this:
Cheers
not sure why you are doing it this way but if this is a cut and paste you are missing > & <
<a href="m3about.html" /a>
should be
<a href="m3about.html">about </a>
tim
You're almost correct.
Code:<ul> <li>Home</li> <li><a href="m3about.html">About</a></li> </ul>
It might have worked on your browser within the surrounding code but being a serious omission it would have caused problems on other browsers along with creating long-term issues if you went to modify the code at a later time (such as adding another line in the list).strange to note that on one page i left the </li> out at the end and it still worked, however i have added it in again and am grateful for the pointers !
always cross-browser test.
nothing worse then completing a job and find that it doesn't work correctly on some browsers, still getting use to the MANY that we have to deal with these days.
tim
If you are testing the code online you can check the HTML by running the URL through this validator:
http://validator.w3.org/
You don't have to get it 100% correct for example sometimes there are issues with "DOCTYPE" but you can check the actual code you are writing.
If you are checking the code on your computer you can sometimes see if there is a problem by right clicking then selecting "View Page Source" and then checking the code section you are working on to see if there are any tags in red indicating an error. This works with Firefox not sure about other browsers.
Great work!
Another option you could have done as well, was to make a copy of the main file and rename it index.html and upload that.
but it looks like you are gaining a lot of experiences from learning from your mistakes which I think is more important than getting it right the first time and not fully understanding what you did.
I did rename the original but i thought it would be learning to use the cpanel then public html files to make the change, thanks
the problem with doing it that way is the file on your computer is no longer named correctly, this will create problems down the road so best to start with good systems
tim