Open In App

HTML | <iframe> name Attribute

Last Updated : 22 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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: 

  • name: It specify the name for the Iframe element.

Example: 

html




<!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:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer
  • Firefox
  • Apple Safari
  • Opera

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads