HTML <frame> tag

HTML <frame> tag : Definition

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

• The <frame> tag sets the particular area within an HTML file where an another HTML web page can be displayed.

• 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.

<frame> tag example :

<!DOCTYPE html>
<html>
<head>
  <title>Frame tag</title>
</head>



  <p class="paragraph" style="color: red;"> If output is not visible, it means you 
  are using HTML5 that does not support <frame> tag.</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 <frame> tag.