What is < iframe > tag in HTML ?

What is < iframe > tag in HTML ?


 The <iframe> tag specifies an inline frame.


An inline frame is used to embed

 another document within the current HTML document.


Example :


<html>

<head>

      <title>Example of iframe in HTML</title>

   </head>

   <body>

      <p>Whole HTML Question </p>

      

<iframe src = "https://tech.thinkforu.org/search/label/html

width = "444" height = "300">

       

      </iframe>

 </body>

</html>

Comments

Last 7 Days

How to use autoplay and mute attribute with < video > tag in HTML for youtube ? with example