Create HTML document with all Frame elements (FRAMESET, FRAME, NOFRAMES,
and INLINE FRAME).



Input


<!DOCTYPE html>
<html>
   <head>
      <title>HTML FRAMESET, FRAME, NOFRAMES,</title>
   </head>
   <frameset cols = "675, *">
      <frame src = "https://codingfreak18.blogspot.com/" name = "home_page" />
      <frame src = "https://codingfreak18.blogspot.com/p/html.html" name = "html_page" />     
      <noframes>
         <body>
            Your browser does not support frames.
         </body>
      </noframes> 
   </frameset>
</html>




Output






Input(for the inline frame)


<!DOCTYPE html>
<html>
<body>

<h1>The iframe element</h1>

<iframe src="https://codingfreak18.blogspot.com/p/html.html">
</iframe>

</body>
</html>




Output


No comments:

Post a Comment