HTML CSS examples for HTML Tag:iframe
iframe sandbox Attribute - An <iframe> sandbox allowing scripts and access to server content:
<!DOCTYPE html> <html> <body> <iframe src="demo_iframe_sandbox_origin.htm" sandbox="allow-same-origin allow-scripts"> <p>Your browser does not support iframes.</p> </iframe><!--from ww w. j a va2s .c o m--> </body> </html>