코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML iframe tag - sandbox attribute</title> </head> <body> <iframe src="/examples/media/iframe_sandbox.html" sandbox> <p>현재 사용 중인 브라우저는 iframe 요소를 지원하지 않습니다!</p> </iframe> <iframe src="/examples/media/iframe_sandbox.html"> <p>현재 사용 중인 브라우저는 iframe 요소를 지원하지 않습니다!</p> </iframe> </body> </html>