Iframes
An iframe, or inline frame, is like having a box on your page that displays another page.
You might be thinking, "What's the purpose?" Well, if I didn't have the layout on that page and it was just the content, I could put the layout outside of the frame and have links so the only thing that changes is the frame. The result? You only have to change the layout on one page.
Here's the code (if you want a border just change 0 to any number for the thickness):
The most important thing to learn now that saves a lot of confusion later is if you have a link outside the frame (like on your layout), you have to add this bit of code so the page opens up in the frame:
Your link code might look like this: <a href="smileyhelper.com" target="myframe">

