iframe in html
The <iframe> tag specifies an inline frame.
An inline frame is used to embed another document within the current HTML document.
<!DOCTYPE html>
<html>
<body>
<iframe src="https://technisias.blogspot.com/">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>
Output:
Comments
Post a Comment