Nunzio's Little Place On The Web
Nunzio's IFRAME Examples

Article by Nunzio Fartalone (aka Nunzio390; aka Phzzz; aka Tom)
*Note: Also see Nunzio's article on Using IFRAMES for Embedded Video

An IFrame (Inline Frame) is an HTML element which makes it possible to embed another HTML document inside the main document. In essence, it's a floating frame inserted within a web page which is not bound to the side of a browser window.

This page contains examples of how I've used IFrames at my site. I'll only show 3 examples, even though there are many more IFrames in use throughout my site. These 3 examples should be enough, to give you an understanding of how I utilize IFrames within web pages and also allow for HTML validation with the W3C consortium. You should also refer to index.shtml at my site (where similar IFrames are in use) while reading through this page.



IFRAME Example #1

Now, the above music controls "appear" to be embedded directly into this page, but in reality what you see above is an IFrame, calling in a completely separate page that actually contains the HTML5 audio code for the media player controls. Why did I do it that way? Well that's part of the beauty of using IFrames. There is NO way that a web page would ever get through the W3C Markup Validator if it detected the "extended" HTML5 audio coding on the page. So, in order to have my page(s) validate, I use the IFrame where the "bad" code (according to the W3C consortium geeks) cannot be parsed/picked up on my web page. Using an IFrame in this way allows this page (see bottom of this page), and any of my other pages, to indeed conform to W3C recommendations and pass as valid HTML 4.01.
The HTML5 audio code for the above IFrame within the separate page that displays the music controls ...
<div class="audio-player"> <audio id="audio-player" src="http://nunzioweb.com/player/mixed/Gimme-Dat-Ding.mp3" type="audio/mp3" controls="controls"></audio> </div>
<script type="text/javascript"> $(function(){ $('#audio-player').mediaelementplayer({ alwaysShowControls: true, features: ['playpause','progress','volume'], audioVolume: 'horizontal', audioWidth: 450, audioHeight: 40, iPadUseNativeControls: true, iPhoneUseNativeControls: true, AndroidUseNativeControls: true }); }); </script>


Back to Top | Close this window


IFRAME Example #2
The Killer Klown graphic that you see on the right *appears* to be situated directly alongside this text on both this page and on my index page, but it is NOT. In reality there is another IFrame being used. Here again, the IFrame is calling in a completely separate page that actually contains the graphic. Why did I do it that way? Again... there is NO way that this page or my index page would ever get through the W3C Markup Validator if the validator detected the *supposedly bad* opacity coding I use for the graphic (for an interesting cross-browser mouse-over effect). So, in order to have my index page (and this page) successfully conform to W3C recommendations for valid HTML 4.01, I use the IFrame to the right so that the *supposedly bad* opacity code cannot be parsed/picked up on this or my index page. That *bad* code exists within the IFrame's targeted page.

So, the Killer Klown graphic that you see on the right is NOT contained on this page, but is instead coded within the IFrame's targeted page, and the width and height of the IFrame are set to accommodate the image's dimensions.
Code for the above IFrame referencing the separate page displaying the Killer Klown graphic ...
<iframe src="001-opacity-example.htm" width="233" height="355" scrolling="no" frameborder="0">[Your browser does not support frames or is currently configured not to display frames. Please use an up-to-date browser that is capable of displaying frames.]
</iframe>


Of Importance:
You should have already noticed this, but if you didn't, click on both these links:
1. 001.htm (IFRAME #1's targeted separate page)
2. 001-opacity-example.htm (IFRAME #2's targeted separate page)

You will see how the music controls in the first targeted page and the Killer Klown graphic located within the second targeted page BOTH hug the upper-left corners of both browser windows. It is very important to have margins and padding set to ZERO at the targeted pages. If not, placement within the IFrames gets all messed up.

So, if you were to also examine the source code of each of those 2 pages, you will see that both pages contain CSS styling that will eliminate page borders...
CSS styling that I've used at the targeted pages to eliminate page borders ...
<style type="text/css">
body {
padding-top:0;
padding-bottom:0;
padding-left:0;
padding-right:0;
margin-top:0;
margin-bottom:0;
margin-left:0;
margin-right:0;
}
</style>


Back to Top | Close this window


IFRAME Example #3
455 Rocket Lyrics:
This example contains "scrollable" content. In the first 2 IFrame examples, scrolling was set to NO... (scrolling="no"). In this example scrolling is set to AUTO... (scrolling="auto") and frameborder is set to ON... (frameborder="1"). In the first 2 examples frameborder was set to OFF... (frameborder="0"). That was because I was "hiding" the fact that they were not part of the index page.

The "455 Rocket Lyrics" scrollable IFrame situated directly to the left of this text is contained within its own table but that table is also contained within the left cell for page positioning. Here again, the IFrame is calling in a completely separate page that actually contains the lyrics to the song. I'm hiding nothing from the W3C consortium this time though. The "autoscroll" scripting in use does not "violate" any of their geek standards.
Code for the above IFrame referencing the separate page displaying the song lyrics ...
<table border="0" width="300" align="center" cellpadding="0" cellspacing="3" bgcolor="#35679a"><tr>
<td><table border="0" width="100%" align="center" cellpadding="0" cellspacing="6" bgcolor="#B9D4E6"><tr>
<td><iframe name="frame" src="lyrics/455Rocket.html" width="100%" height="288" scrolling="auto" frameborder="0">[Your user agent does not support frames or is currently configured not to display frames.]</iframe></td>
</tr></table>
</td></tr></table>
 
Note that in the above code I've positioned the IFrame within 2 nested tables and varied both the cellspacing values and background (bgcolor) values of each nested table. This is what gives it that rather nice border (well, suitable for my site anyway).

  Valid HTML 4.01!   Valid CSS!