JavaScript Program to Create iframe in HTML

Write a JavaScript program to create iframe in HTML.



Source Code
<html>
<head>
    <title>iframe Example</title>
</head>
<iframe src="frame1.html">
    Your browser does not understand iframe
</iframe>
</html>
Output