[ acky.net logo ]




Acky.net Tips

Shell Accounts: 3 logins - 9 backgrounds
Shell Accounts: 3 logins - 9 backgrounds

 

Let the frames float…
How would you like to open a scrollable browsing window inside your page? It's very easy to create such a window -- usually referred to as a floating frame.

Simply insert following HTML tags in your page:

<iframe

  width="width of the frame"

  height="height of the frame"

  name="name of the frame"

  src="URL of the page to display"

>

  ...whatever in here will be displayed 

     if the browser doesn't support 

     floating frames...

</iframe>

Here's an example floating frame (if you're using Explorer 3.x, you should see a scrollable window):

<iframe

  width  = 400

  height = 100

  name   = "FloatingFrame1"

  src    =

  "http://armageddo.ml.org/Ack/"

>



</iframe>