Add sand box policy for iframe, allow-same-origin allow-scripts allow-popups allow-forms - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:iframe

Description

Add sand box policy for iframe, allow-same-origin allow-scripts allow-popups allow-forms

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <title>my title</title> 
 </head> <!--   www  . ja  va  2 s . c o  m-->
 <body> 
  <iframe sandbox="allow-same-origin allow-scripts allow-popups allow-forms" src="http://www.java2s.com"></iframe>  
 </body>
</html>

Related Tutorials