
How to use Iframe in HTML
In this article, you will How to use Iframes Using HTML on Web Browsers.
Syntax:-
<iframe src="URL"></iframe>
Example:-
<html>
<head>
<title>Iframe with Target Link</title>
</head>
<body>
<iframe height="300px" width="100%" src="https://huboftutorials.com" name="iframe_a"></iframe>
</body>
</html>
Example of Iframe Removing Border
<iframe src="https://huboftutorials.com" style="border:none;"></iframe>
Check on Facebook