maybe
05-02-2003, 03:45 AM
i am pretty dumb but i have been working on a webpage and have frames but for some reason everything i put goes either beside or under it...its an inline frame and i got the code off this site...is there a certain code you need to add pictures and stuff? i know this is probually a very dumb question!!
Dude128
05-02-2003, 03:48 AM
iframes work just like normal frames- they display another page inside them. you will have to create a new page, add everything that you want to go inside the iframe to that page, and put the address of that page in the src attribute of the <iframe> tag.
so if you created a page called myiframe.html, you would use <iframe src="myiframe.html" ...the other attributes go here...>
You want to add pictures inside the iframe? You need to create a separate page for that.
<iframe src="PAGE2.HTML"></iframe>
All the text, pictures, etc. on PAGE2.HTML will appear inside the iframe.
EDIT:|| Dang! :p
maybe
05-03-2003, 04:37 AM
thanks guys..my website is now on its way to completion :)