본문 바로가기

HTML/HTML 기초

[HTML] iframe 사용해보기

iframe 태그는 외부에 있는 페이지를 해당 페이지로 불러올 수 있다.

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <div class="container">
        <h2>iframe 태그를 이용해 외부 문서(사이트) 포함시키기</h2>
        <div class="content">
            <iframe src="https://news.daum.net/" seamless width="95%" height="550px"></iframe>
        </div>
    </div>
</body>
</html>

728x90
반응형

'HTML > HTML 기초' 카테고리의 다른 글

[HTML] footer, address 사용해보기  (0) 2020.07.29
[HTML] section과 aside 부분  (0) 2020.07.29
[HTML] header부분  (0) 2020.07.29
[HTML] input 기타 type 알아보기  (0) 2020.07.28
[HTML] select 사용해보기  (2) 2020.07.28