Hide options

Create an iframe on you're website

Iframe copy paste
<iframe src="newpage.html" width="200" height="200" frameborder="0" scrolling="auto" name="myInlineFrame">
   TEXT FOR NON-COMPATIBLE BROWSERS HERE
</iframe>


Description

src = the source file the iframe uses, i.e newpage.html
name = a unique name for the iframe (not required)
frameborder = 0 | 1 - Sets the iframe an outline border (1) or no outline border (0)
width = pixels, i.e 200
height = pixels, i.e 200
scrolling = yes | no | auto - Sets scrolling. auto will mean scrollbars appear when text overflows initial size
align = left | right | center - Alignment of the iframe, horizontally
marginwidth = pixels - margin widths in pixels, i.e 2 would give a 2px margin width
marginheight = pixels - margin height in pixels, i.e 2 for a 2px margin height


Top