Thread: Iframes
Results 1 to 3 of 3
Related
-
iframes Forum: HTML Forum
Replies: 1 -
IFrames Forum: HTML Forum
Replies: 0 -
Iframes Forum: HTML Forum
Replies: 4 -
Need Help With IFrames Forum: HTML Forum
Replies: 6 -
iframes again..... Forum: HTML Forum
Replies: 1
-
09-04-2004, 03:47 PM #1
Iframes
---Can Somebody Explain To Me What I Need To Do
---In Order To Setup IFrames I've Read Different
---Tutorials On IFrames And Stuff Like That But I Still
---Can't Figure Out How To Set Them Up
---Thanx
---DaWebmasta
-
09-05-2004, 03:36 PM #2bald headed old fart
Status- Offline
Join Date- Aug 2003
Location- chertsey, a small town 25 miles south west of london, england.
Posts- 739
Hi there DaWebmasta,
Here is a simple example of an iframe...you may also find the contents illuminating
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta content="mshtml 6.00.2800.1264" name="generator" /> <title>Iframe</title> <style type="text/css"> /*<![CDATA[*/ iframe { width:648px; /*adjust these values for iframe dimensions*/ height:400px; /*adjust these values for iframe dimensions*/ } div#ifm { position:absolute; left:100px; /*adjust these values for iframe position*/ top:100px; /*adjust these values for iframe position*/ } /*//]]>*/ </style> </head> <body> <div id="ifm"> <iframe src="http://www.w3schools.com/"></iframe> </div> </body> </html>
coothead
-
09-05-2004, 05:58 PM #3
---Thanx coothead I'll Give It A Try
---Thanx
---DaWebmasta