Table of Contents

HTML Iframe Tag

  • <iframe> an inline frame with an HTML tag .
  • The <iframe> tag defines a rectangular region within the document in which the browser can display a separate the document, including scrollbars and borders.
  • The src attribute is used for the URL of the document that occupies the inline frame.
Example
<!DOCTYPE html>
<html>
<body>
<h2>Example of Iframe </h2>
<div style="height: 350px;width:350px; border: 2px solid green;">
<iframe height="300px" width="100%" src="https://nielitbhu.com/lp-courses/">
    </iframe>
<p><a href="https://www.nielitbhu.com" target="_blank">nielitbhu.com</a></p>
<center>
<input type="button" name="button" value="click here">
</center>
</div>
</body>
</html>

HTML Embed Tag

Example
<!DOCTYPE html>  <html>  
<head>  
<title>Embed Tag</title>    
</head>  
<body>  
<h2>Example of embed tag</h2>
<div style="height: 350px; width: 350px; border: 2px solid black;">  
<embed src="https://nielitbhu.com/christmas2012.jpg" height="300px" width="50%"></embed>  
</div>
</body>  
</html>