'iframe' identifies a frame that can be placed anywhere inside a document
<html> <head> <title>iframe element example</title> </head> <body> <p align="center"> <iframe id="myIframe" frameborder="1" scrolling="yes" src="http://www.java2s.com" width="600" height="400"> </iframe> </p> <br><br><br> <p align="center"> <iframe id="myIframe" frameborder="10" scrolling="yes" src="http://www.java2s.com" width="600" height="400"> </iframe> </p> </body> </html>