does anyone know why the code below doesn't work at Firefox? I always got a
error "The requested URL could not be found. " - but with MS-IE8 and Opera 9
it works. If anyone likes to look - http://anika.khgagg.de.
<HTML>
<HEAD>
<TITLE> Startseite</TITLE>
</HEAD>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<!-- This file must be named index.html and the other frame files linked to
it -->
<FRAMESET ROWS="90,*" noresize>
<FRAME NAME="kopf" SRC="Umwelt_page\Head.htm" frameborder=0 >
<FRAMESET COLS="120,*" noresize >
<FRAME NAME="menue" SRC="Umwelt_page\Buttonleiste.htm"
frameborder=0>
<FRAME NAME="weiss" SRC="Umwelt_page\Begruessungsseite.htm"
frameborder=0 >
</FRAMESET>
</FRAMESET>
<NOFRAMES>
<!-- Text to display for frame-incapable browsers -->
</NOFRAMES>
</HTML>
<BODY>
</BODY>
</HTML>
Thanks in advance
Helge Voigtl�nder
--
Dieses Mail wurde unter Ausschlu� der deutschen
Rechtschreibung (der neuen und der alten) erstellt.
The DOCTYPE line is in the wrong place, but the site works for me.
The Doc Type belongs before the opening <HTML> tag.
--
Ron K.
Who is General Failure, and why is he searching my HDD?
Kernel Restore reported Major Error used BSOD to msg the enemy!
I killed the thread because I found the mistake!
I used "\" in the path for documents and other. Only Opera and IE8 accepted
that - the other ones likes to have "/". I made a correction - now it's
runnig at all browsers.
Thanks to all !
Bye
Helge Voigtl�nder
--
Dieses Mail wurde unter Ausschlu� der deutschen
Rechtschreibung (der neuen und der alten) erstellt.
"Ron K." <kil...@gisco.net> schrieb im Newsbeitrag
news:BPWdnVkyk6Edo5XW...@mozilla.org...
What code doesn't work? I went to http://anika.khgagg.de with FF 3.5.5,
and there was no error message.
Of course the HTML is broken, and you should fix the errors.
> Pete Holsberg on 11/21/2009 1:53 PM, keyboarded a reply:
>> Helge Voigtlaender wrote:
>>> does anyone know why the code below doesn't work at Firefox? I
>>> always got a error "The requested URL could not be found. " - but
>>> with MS-IE8 and Opera 9 it works. If anyone likes to look -
>>> http://anika.khgagg.de.
>>
>> The DOCTYPE line is in the wrong place, but the site works for me.
>
> The Doc Type belongs before the opening <HTML> tag.
..and should be a frameset one as well.
http://www.w3.org/QA/2002/04/valid-dtd-list.html
I'd recommend:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
The OP's posted code also has the slashes in the SRC URLs leaning the
wrong way. Should be /, not \ though in the rendered page, they show
correctly.
--
-bts
-http://www.html-faq.com/htmlframes/?framesareevil ;-)
HI,
I killed the thread because I found the mistake!
I used "\" in the path for documents and other. Only Opera and IE8 accepted that - the other ones likes to have "/". I made a correction - now it's runnig at all browsers.