Fix body language

Can someone fix this so that it will display two frames - one at the top and one at the bottom?

I have done everything that I can think to create two frames. Can you repair and make corrections? <HTML> <HEAD> <TITLE>the Black Kat's Kauldron: GERMANY/ DEUSTCHLAND: INDEX</TITLE> </HEAD> <STYLE>body{background: BLACK url(http://www.citycat.ru/~julia/bg/bg13_stars/star08.jpg) fixed}--> </STYLE> <SCRIPT LANGUAGE="JavaScript"> <!-- function open(new window) {return true;} //--> </SCRIPT> <head> <STYLE type="text/css"><!-- A:link{color:ROYALBLUE;text-decoration:cursor:background-color:non} A:visited{color:ROYALBLUE;text-decoration:cursor:font-weight:italic} A:active{color:ROYALBLUE;text-decoration:none} A:hover{color:ROYALBLUE;text-decoration:underline overline} --></STYLE> < ! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http : // www.w3.org / TR / html4 / frameset.dtd" > <FRAMESET COLS="65%,35%"> <FRAME SRC="http://www.freewebs.com/kris-10/Germany/Contents.htm" style="border: # solid COLOR> <FRAME SRC="URL HERE"> </FRAMESET>

Public Comments

  1. This will give you your frameset. Remember you will have 3 files total to achieve this. 1.) index.htm (Code displayed below) 2.) header.htm 3.) body.htm Code for index.htm... <html> <head> <title>the Black Kat's Kauldron: GERMANY/ DEUSTCHLAND: INDEX</title> <STYLE type="text/css"> body{background: BLACK url(http://www.citycat.ru/~julia/bg/bg13_sta... fixed} A:link{color:ROYALBLUE;text-de... A:visited{color:ROYALBLUE;text... A:active{color:ROYALBLUE;text-... A:hover{color:ROYALBLUE;text-d... overline} </STYLE> <SCRIPT LANGUAGE="JavaScript"> <!-- function open(new window) {return true;} //--> </SCRIPT> </head> <frameset rows="64,*"> <frame name="header" scrolling="no" noresize target="main" src="header.htm"> <frame name="main" src="body.htm"> <noframes> <body> <p>This page uses frames, but your browser doesn't support them.</p> </body> </noframes> </frameset> </html>
  2. frames and framesets belong in a museum for antiquities. iframes are at least last year's technology! <html> <head> <title> the Black Kat's Kauldron: GERMANY/ DEUSTCHLAND: INDEX </title> <style type="text/css"> body { background-color: black; background-image: url( http://www.citycat.ru/~julia/bg/bg13_stars/star08.jpg ); } </style> </head> <body> La la la </br> <iframe src="http://www.************/kris-1..."> </iframe> </br> <iframe src="URL HERE" /> </iframe> </br> dum dee dee </body> </html> puts all the dirty work in 1 file. You can stule the iframes like you would anything else in html... perhaps a width="100%" and more!
Powered by Yahoo! Answers