Showing posts with label html iframe. Show all posts
Showing posts with label html iframe. Show all posts

Thursday, August 3, 2023

html iframe

HTML <iframe>


Information

         1] The HTML <iframe> tag specifies an inline frame
         2] The src attribute defines the URL of the page to embed
         3] Always include a title attribute (for screen readers)
         4] The height and width attributes specify the size of the iframe
         5] Use border:none; to remove the border around the ifram

Program

<!doctype html>

<html>

<body>

<h2>HTML Iframes</h2>

<p>You can use the height and width attributes to specify the size of the iframe:</p>

<iframe 

src="https://webdesigningtheory.blogspot.com/2023/05/html-and-css-use-to-create-easy-webpage.html" height="300" width="500" title="iframe">

</iframe>

</body>

</html>


OUTPUT

iframe html

VISIT link 
And
your extra information