Blindly coding with HTML

K.I.L.E.R

Retarded moron
Veteran
I am somehow ment to code a noframes in the same page as the frames page.
Code:
<html>
 <frameset rows=85,*" border=0>
  <frame name=logo src="logo.htm" noresize scrolling=no marginheight=0>
 <frameset cols="15%,*">
  <frame name=links src="links.htm" noresize scrolling=no>
  <frame name=main src="main.htm" noresize>
 </frameset>
<noframes>
<a href="links.htm">Click here</a>
</noframes>
</html>

I just pray this works.
 
It should be fine. You can actually place the entire <BODY> tag between the &lt;noframes> and &lt;/noframes>. Browsers with frame support will completely ignore everything under these two tags, while browsers that dont will do the otherwise. ^^
 
Back
Top