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 html <iframe> height
and width
attributes specify the size of the iframe
5] html <iframe> 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
Post a Comment