Open In App

HTML | <iframe> name Attribute

The HTML iframe name Attribute is used to specify a reference for an <Iframe> Element. The name attribute is also used as a reference to the elements in a Javascript. 

Syntax: 



<iframe name="name">

Attribute Values: 

Example: 






<!DOCTYPE html>
<html>
 
<head>
    <style>
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h1 style="color:green">
      GeeksforGeeks
  </h1>
    <h2>
      HTML &lt;Iframe&gt;name Attribute
  </h2>
    <p>Content goes here</p>
 
    <iframe src=""
            height="200"
            width="200"
            name="myGeeks">
    </iframe>
    <br>
       target="myGeeks">
      GeeksforGeeks
  </a>
 
    <p>Content goes here</p>
 
</body>
 
</html>

Output: 

Before: 

 

After:

  

Supported Browsers: The browsers supported by HTML <iframe> name Attribute are listed below:

Article Tags :