I know how to make an iFrame, but how do I put html into the iFrame? I tried this but it doesn't work:
<iFrame><html code></iFrame>
Offline
<iframe src="htmlpage">stuff to say if iframes arent supported</iframe>
Offline
okay let me explain
<iframe src="xyz.html' >
Your browser is old
</iframe>
in the above code <iframe tells he browser that here is an i frame to be used
src attribute tells it to open a page at a location in that iframe (the source CODE should be on that page)>
YOUR BROWSER IS OLD (tells the browser to paste this if iframe is not recognizzed)
</iframe> tells the browsr to close the iframe tag.
I hope its clear ?
Any doubt ??
Offline