Blog IT

The <iframe> tag creates an inline frame for embedding third-party content (media, applets, etc.). Although the content of the frame and the web page are independent, they can interact through JavaScript.

<!DOCTYPE html>
<html>
  <head>
    <title>HTML <iframe> Tag</title>
  </head>
  <body>
    <iframe src="http://blog-it.tn/"></iframe>
  </body>
</html>