Communication Center Last Update:
Back to FAQ page
A>
Home Page | Search | What's New |
Publish on BCN
Become a "Friend of BCN"
Here is a code snippet from a Front Page html page
<p align="center";><a href="bdnavolun.htm";><img
src="bdnavolopsbut.gif" width="140" height="60"
alt="Volunteering" border="0";></a;><a href="bdnajobs.htm";>
<img src="file:///D:/Documents/Pages/bdnajobsbut.gif" width="140"
height="60"
alt="E$
border="0";></a;><a href="bdnanews.htm";><img
src="file:///D:/Documents/Pages/bdnanewsbut.gif" width="140" h
Notice the top two links:
<p align="center";><a href="bdnavolun.htm";><img
src="bdnavolopsbut.gif" width="140" height="60"
alt="Volunteering" border="0";></a;><a href="bdnajobs.htm";>
The links go directly to the files:
<a href="bdnavolun.htm"><img src="bdnavolopsbut.gif" width="140"
height="60"
Now note how the bottom two links are, in particular "file:///D ....."
<img src="file:///D:/Documents/Pages/bdnajobsbut.gif" width="140"
height="60"
alt="E$
border="0";></a;><a href="bdnanews.htm";><img
src="file:///D:/Documents/Pages/bdnanewsbut.gif" width="140"
What front page does is make links to itself and its program, thus you have D:// Just eliminate that. Those lines should now read:
<img src="bdnajobsbut.gif" width="140"
height="60"
alt="E$ border="0";></a;><a href="bdnanews.htm";><img
src="bdnanewsbut.gif" width="140"
Front Page is OK, as long as you know a little about HTML (which BCN is happy to teach you) and can fix your code.