본문 바로가기

HTML

iframe

iframe

<!DOCTYPE html>
<html>
  <body>
    <iframe
      src="http://127.0.0.1:5500/11.Id.html"
      name="iframe_a"
      height="300px"
      width="100%"
      title="Iframe Example"
    ></iframe>

    <p>
      <a href="https://gw.kaoni.com/" target="iframe_a">gw.kaoni.com</a>
    </p>

    <p>
      When the target attribute of a link matches the name of an iframe, the
      link will open in the iframe.
    </p>
  </body>
</html>

pre
post

'HTML' 카테고리의 다른 글

HTML <head>  (0) 2023.02.01
FilePath  (0) 2023.02.01
Id  (0) 2023.02.01
Class  (0) 2023.02.01
Block&Inline  (0) 2023.02.01