Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   HTML (http://www.velocityreviews.com/forums/f31-html.html)
-   -   hyperlinks don' t show up in adress bar (http://www.velocityreviews.com/forums/t162291-hyperlinks-don-t-show-up-in-adress-bar.html)

Ted 07-25-2005 06:11 PM

hyperlinks don' t show up in adress bar
 
Hi,

I've made a html page with some hyperlinks. The hyperlinks work perfectly
but the url of the hyperlink doesn't show up in the address bar.

I think it's something in my headertext:

<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>www.tstingts.nl</title>
</head>
<br><div align="center"><img src="gifs/wallpaper/tstings.gif" border="0"
alt="" align="center"> <br>Gemaakt met HTML editor <a
href="http://bluefish.openoffice.nl/">Bluefish </a> laatst bijgewerkt
13-06-2005</div> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> </body>

example of a table I use:

<br><br><br>
<TABLE WIDTh=80% height=10% BORDER="1" CELLSPACING="0" CELLPADDING="3"
valign="top" ALIGN="CENTER">
<TR>
<TD COLSPAN="4" align="center">Veel gebruikte links</TD>
</TR>
<TR>
<td><a href="http://www.google.nl"> Google </a><br></td>
<td><a href="http://gathering.tweakers.net/"> Tweakers forum </a></td>
<td><a href="http://www.nu.nl"> www.nu.nl </a></td>
<td><a href="https://www.telfort.nl/app/mijntelfort/">
Telfort inloggen </a></td>
</TR>
<TR>


Any idea what could be the reason?

Tia Ted

David Dorward 07-25-2005 06:16 PM

Re: hyperlinks don' t show up in adress bar
 
Ted wrote:

> hyperlinks work perfectly but the url of the hyperlink doesn't show up in
> the address bar.


> I think it's something in my headertext:


Not possible.

> Any idea what could be the reason?


Frames most likely, or a problem with your browser. A URL would make it
easier to tell.

--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is

Adrienne 07-25-2005 06:19 PM

Re: hyperlinks don' t show up in adress bar
 
Gazing into my crystal ball I observed Ted <tl@localhost.localdomain>
writing in news:pan.2005.07.25.18.11.41.494093@localhost.loca ldomain:

> I've made a html page with some hyperlinks. The hyperlinks work perfectly
> but the url of the hyperlink doesn't show up in the address bar.
>
> I think it's something in my headertext


Validation <http://validator.w3.org> will give you some answers, and of
course, a URL would have helped.

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Edwin van der Vaart 07-25-2005 06:34 PM

Re: hyperlinks don' t show up in adress bar
 
Ted wrote:
> Hi,

G'day,

> I've made a html page with some hyperlinks. The hyperlinks work perfectly
> but the url of the hyperlink doesn't show up in the address bar.
>
> I think it's something in my headertext:

Doctype above the <html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

> <html>
> <head>
> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
> <title>www.tstingts.nl</title>
> </head>

Missing <body>

> <br><div align="center"><img src="gifs/wallpaper/tstings.gif" border="0"
> alt="" align="center"> <br>Gemaakt met HTML editor <a
> href="http://bluefish.openoffice.nl/">Bluefish </a> laatst bijgewerkt
> 13-06-2005</div> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
> Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> </body>

Remove the <!DOCTYPE ...>
Missing </html> at the end of the html file.

> example of a table I use:

Ooops, the above wasn't the correct code.

> <br><br><br>
> <TABLE WIDTh=80% height=10% BORDER="1" CELLSPACING="0" CELLPADDING="3"
> valign="top" ALIGN="CENTER">
> <TR>
> <TD COLSPAN="4" align="center">Veel gebruikte links</TD>
> </TR>
> <TR>
> <td><a href="http://www.google.nl"> Google </a><br></td>
> <td><a href="http://gathering.tweakers.net/"> Tweakers forum </a></td>
> <td><a href="http://www.nu.nl"> www.nu.nl </a></td>
> <td><a href="https://www.telfort.nl/app/mijntelfort/">
> Telfort inloggen </a></td>
> </TR>
> <TR>
>
> Any idea what could be the reason?

Perhaps it has to do with the program you're using.
The best thing to look the file with vi or gedit.
The code layout looks like:
<!DOCTYPE ...>
<html>
<head>
<title>...<title>
</head>
<body>
Lots of html codes, content and images.
</body>
</html>
--
Edwin van der Vaart
http://www.semi-conductor.nl/ Links to Semiconductors sites
http://www.evandervaart.nl/ Under construction


All times are GMT. The time now is 01:11 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.