HTML iFrames

What is iFrames in HTML?

iFrame stand for Inline frame:

An inline frame is used to embed another document within the current HTML document.


HTML iFrames Example:

Let's see below the example of iFrames

                          
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Modified Iframe Example</title>
</head>
<body>
  <iframe height="400" width="80%" src="https://learnfasta.com/"></iframe>
</body>
</html>