iframes

You might want to show other websites in your own webiste. An easy way to do that is using iframes. This is the code:

            
<iframe src="html file name or website url" width=width height=height></iframe>
            
        

NOTE : Only a couple external websites work.

If you have noticed, I have used iframes through out this course to show the output.

Here are two iframes and their code:

            
<iframe src="index.html" width=600px height=400px>/iframe>
            
        
            
<iframe src="https://www.discoveryeducation.com/" width=1000px height=600px>/iframe>