This is the source code from the HTML5 Tutorial For Beginners. In this source code, you are going to learn about HTML 5 – iframe.
Source Code:
<!DOCTYPE html> <html> <head> <title>iframe</title> </head> <body> <iframe width="300" height="200" src="about1.html" name="myiframe"> </iframe> <a href="about.html" target="myiframe">Click Me!</a> </body> </html>