HTML - <frameset> Tag



The HTML <frameset> tag contains a group of frames that contains one or more frames that can be styled as a single unit. It is used to specify the number of rows and columns in frameset wit their pixels.

This tag is no longer recommended as it is deprecated and not supported in the HTML5. Instead you can use the <iframe> tag.

Example

Consider the following example, where we are going to use the frameset tag to the HTML documnet.

<!DOCTYPE html>
<html>
   <frameset cols="110%, 120%">
      <frame name="top" src="https://www.tutorialspoint.com/cg/images/logo.png" />
      <frame name="main" src="https://www.tutorialspoint.com/html/images/html-mini-logo.jpg" />
      <noframes>
         <body>The browser you are working does not support frames.</body>
      </noframes>
   </frameset>
</html>

When we run the above code, it will generate an otuptu consisting of the images displayed on the webpage.

Specific Attributes

The HTML <frameset> tag also supports the following additional attributes −

Attribute Value Description
cols column size Specifies the number of columns and their width in either pixels, percentages, or relative lengths. Default is 100%
rows row size Specifies the number of rows and their height in either pixels, percentages, or relative lengths. Default is 100%.
Advertisements