How to create a 100% frame?

can someone tell me the code and explain me please how to create a frame 100% to hide a url. Like my site is areacool.com, and i want to hide the areacool.community.everyone.net?

Brian
please reply if u know :wink:

Just use something like the following:


<FRAMESET COLS="100%">
<FRAME SRC="PAGE_A.htm">
</FRAMESET>

you have to actually have two frames Justin…something like this instead.

This will give you a left and right frameset:


<frameset cols="0,*" frameborder="NO" border="0" framespacing="0">
  <frame name="empty" scrolling="NO" noresize src="blank.html">
  <frame name="mainFrame" src="content.html">
</frameset>

This will give you a top and bottom frameset:


<frameset rows="0,*" frameborder="NO" border="0" framespacing="0">
  <frame name="empty" scrolling="NO" noresize src="blank.html">
  <frame name="mainFrame" src="content.html">
</frameset>

both of them doesn’t work!

Brian