<iframe> HTML Tag

In this article I will discuss the <iframe> HTML Tag.
  • 1578

The HTML iframe tag is used to specify an inline frame.An inline frame allows you to embed another document within the current HTML document. You use the iframe src attribute to specify the source of the other document, as well as other attributes to determine the height, width, scrolling properties, border etc.

Example

<html>

<head>

    <title></title>

</head>

<body>

    <iframe src="dotnetheaven.com" height="512px" width="512px">

        <p>

            Your browser does not support iframes.</p>

    </iframe>

</body>

</html>



Output

iframe.jpg 


Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

 

© 2020 DotNetHeaven. All rights reserved.