Frameset in HTML

 We can merge two website by Frameset.The HTML <frameset> tag is used to divide the window into frames. This tag is not supported in HTML5.

Creating Frames

To use frames on a page we use <frameset> tag instead of <body> tag. The <frameset> tag defines, how to divide the window into frames. The rows attribute of <frameset> tag defines horizontal frames and cols attribute defines vertical frames. Each frame is indicated by <frame> tag and it defines which HTML document shall open into the frame.

Code for Frameset-


<!DOCTYPE html>

<html>


   <head>

      <title>HTML Frames</title>

   </head>

   <frameset rows = "10%,80%,10%">

      <frame name = "top" src = "/html/top_frame.htm" />

      <frame name = "main" src = "/html/main_frame.htm" />

      <frame name = "bottom" src = "/html/bottom_frame.htm" />

   

      <noframes>

         <body>Your browser support Frames.</body>

      </noframes>

      

   </frameset>

   

</html>

OR

<frameset cols="50%,50%">

  <frame src="https://Google.com" />

  <frame src="meet.google.com" />

</frameset>

Credit - Tutorialspoint

W3schools


Comments

Post a Comment

Popular posts from this blog

Optgroup element