Oh Oh, I was hoping you'd know. Iframes are inline frames. They are like frames but, much easier to deal with because no frameset page is needed and less imagination as well. The syntax has many variables but, for something like what you are doing keep it simple:
HTML Code:
<iframe src="slideshow1.htm" width="250" height="250" frameborder="0"></iframe>
Basically what this does is create an element on your page similar to a paragraph or a division. The big difference is that another page shows through it. In this case 'slideshow1.htm'. If you put three of these in a row and make a separate slideshow page to show in each one, it will appear as though there are three slideshows on the 'container' page (the page that contains the iframes). Set the height and width to that of the slideshow showing through it, plus perhaps a little more. On the 'contained' page(s) where you put the slideshow(s), make the slideshow the only thing on the page and have it be in the upper left corner of that page. Sometimes centering it on the page works better but, usually upper left is best.
Bookmarks