How to use < iframe > tag with sandbox attribute in HTML ? with Example
How to use < iframe > tag with sandbox attribute in HTML ? with Example
The sandbox attribute enables
an extra set of restrictions for the
content in the iframe.
Example
<html>
<h1>Example of iframe tag in HTML </h1>
<body>
<iframe src="https://www.tech.thinkforu.org" sandbox>
</iframe>
</body>
</html>
Comments
Post a Comment