<iframe src="삽입할 문서의 URL"></iframe>
<iframe
    src="https://www.youtube.com/embed/M7lc1UVf-VE?si=Kgf3a19a9LJAeSeo"
    width="300"
    height="150"
    title="YouTube video player"
    style="border: none;"
    referrerpolicy="strict-origin-when-cross-origin"
    allow="fullscreen"></iframe>
브라우저에서 실제 표시된 모습
<iframe
    src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1657.5047190881044!2d-117.92097027358513!3d33.81206951440678!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80dcd7d12b3b5e6b%3A0x2ef62f8418225cfa!2z65SU7KaI64uI656c65OcIO2MjO2BrA!5e0!3m2!1sko!2skr!4v1721806287983!5m2!1sko!2skr"
    width="300"
    height="200"
    style="border: none;"
    loading="lazy"
    referrerpolicy="no-referrer-when-downgrade"
    allow="fullscreen"></iframe>
브라우저에서 실제 표시된 모습
<iframe
    src="https://example.org/"
    title="iframe 예시"
    width="300"
    height="200"></iframe>
브라우저에서 실제 표시된 모습
<iframe src="https://www.example.com"></iframe>
<iframe id="my-Iframe"></iframe>
<script>
    const iframe = document.getElementById("my-Iframe");
    const iframeDoc = iframe.contentWindow.document;
    
    iframeDoc.open();
    iframeDoc.write("<p>자바스크립트로 문서를 삽입했어요!</p>");
    iframeDoc.close();
</script>
브라우저에서 실제 표시된 모습
<iframe srcdoc="<p>Hello, world!</p>"></iframe>
브라우저에서 실제 표시된 모습
<iframe src="https://www.example.com" width="600"></iframe>
<iframe src="https://www.example.com" height="300"></iframe>
<iframe src="https://www.example.com" frameborder="0"></iframe>
<iframe src="https://www.example.com" style="border: none;"></iframe>
<iframe src="https://www.example.com" allowfullscreen></iframe>
<iframe src="https://www.example.com" allow="fullscreen"></iframe>
<iframe src="https://www.example.com" sandbox="allow-scripts allow-forms"></iframe>
<iframe title="HTML 언어에 대한 Wikipedia 페이지" src="https://ko.wikipedia.org/wiki/HTML"></iframe>

caniuse.com에서 더 자세한 정보를 확인해 보세요.