HTML

Last Updated: 10/5/2022

iframe

  • Used to display a web page within a web page.

Syntax

<iframe src="https:www.google.com" title="description"></iframe>

An iframe can be used as the target frame for a link.

<iframe src="about:blank" name="iframe1" title="Iframe Example"></iframe>

<p><a href="https://www.google.com" target="iframe1">Google</a></p>