html - What is wrong with this frameset code? -
i using webmin on server. reason it's decided stop displaying on root page, it's blank. it's still returning code, shown below. individual pages in frames work frameset doesn't want display, in browser, reason.
i have stripped right down this, running on local server still doesn't show anything:
<!doctype html public "-//w3c//dtd html 3.2 final//en"> <html> <head> <title>title</title> </head> <body> <frameset cols="230,*"> <frame name="left" src="test1.html" scrolling="auto"> <frame name="right" src="test2.html" noresize> </frameset> </body> </html>
i've tried removing , changing various attributes no luck.
the <frameset>
element replaces <body>
element. can't use both in same document.
you should write:
<!doctype html public "-//w3c//dtd html 3.2 final//en"> <html> <head> <title>title</title> </head> <frameset cols="230, *"> <frame name="left" src="test1.html" scrolling="auto" /> <frame name="right" src="test2.html" noresize="noresize" /> </frameset> </html>
Comments
Post a Comment