Hey, Erm...
Does any1 remember the old habbox.com site?
it had iframes 1 for the top, 1 for the side and 1 for the content.
can any1 get me that code plz.
Printable View
Hey, Erm...
Does any1 remember the old habbox.com site?
it had iframes 1 for the top, 1 for the side and 1 for the content.
can any1 get me that code plz.
wwwwww
The old habbox site didnt use ifraims at all, it used full frames page wize, divided in to two parts, the left aria for the navigation and the right one for all the content "/
the code was probaly somewhat simlar to this
HTML Code:<html>
<head>
<title>Habbox.com titly</title>
</head>
<body>
<frameset frameborder="0" border="0" cols="200,*">
<frame name="left" src="NAVIGATION.htm" marginwidth="5" marginheight="10">
<frame name="main" src="CONTENT.htm">
</frameset>
<noframes>You need fraimes</noframes>
</body>
</html>
my mistake, whe ni preview it/upload it it's a blank white screen:(
EDIT: nope your right, im an idiot, i added body tags to a fraim set...
HTML Code:<html>
<head>
<title>Habbox.com titly</title>
</head>
<frameset frameborder="0" border="0" cols="200,*">
<frame name="left" src="NAVIGATION.htm" marginwidth="5" marginheight="10">
<frame name="main" src="CONTENT.htm">
</frameset>
<noframes>You need fraimes</noframes>
</html>