Iframe
pagina in een html-pagina zetten zonder frames.
Opties:
SRC = URI (URI of frame content)
NAME = CDATA (name of frame)
LONGDESC = URI (link to long description)
WIDTH = Length (frame width)
HEIGHT = Length (frame height)
ALIGN = [top | middle | bottom | left | right] (frame alignment)
FRAMEBORDER = [1 | 0] (frame border)
MARGINWIDTH = Pixels (margin width)
MARGINHEIGHT = Pixels (margin height)
SCROLLING = [yes | no | auto] (ability to scroll)
Voorbeeld:
Script:
1 2 3 4 5 6 7 8
|
<iframe frameborder=1 height=225 scrolling="yes" name=login_iframe src="http://www.jongevos.nl/index.php" width=600 marginwidth=1> <font face="Verdana, Arial, Helvetica, sans-serif" size="1"> Sorrie, uw browser ondersteund geen IFRAMES</font> <br> <br> </iframe>
|