HTML <frameset> tag

HTML <frameset> tag : Definition

• The <frameset> element is Not Supported in HTML5 anymore.

• The <frameset> tag defines how to divide and set the page into frames.

• The rows attribute of <frameset> tag specifies horizontal frames and cols attribute specifies vertical frames.

• Each frames is indicated by <frame> tag and it specifies which HTML document should open into which frame.

• A <frame>tag is used within the <frameset> element that divides a webpage into multiple sections or frames, to display different web pages in a single frameset field.

<frameset> tag example :

<!DOCTYPE html>
<html>
<head>
  <title>Frameset tag example</title>
</head>
  <p class="paragraph" style="color: red;"> If output is not visible, it means you 
  are using HTML5 that does not support <frameset> element.</p>
  <frameset cols="25%,50%,25%">
    <frame src="python-tutorial.php">
    <frame src="html-tutorial.php"> 
    <frame src="java-tutorial.php">
  </frameset> 
</html>


OUTPUT :


  

If output is not visible, it means you are using HTML5 that does not support <frameset> tag.