How to create a frame inside an HTML page (inline frame).
Code:
<html><bodybgcolor="#cccccc">
The inline frames works like a browser in the browser:
<iframesrc="http://www.google.com"width="350"height="130"></iframe></body></html>
Play with the code:
See working example:
Explanation:
To create a frame inside an HTML page, you just have to use <iframe> and </iframe> tags. You can use also attribute width=" " and height=" " , to give a size for your inline frame.