1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h3>2개의 IT전문 사이트 가져오기</h3>
 
    <!-- iframe을 이용하여 페이지 내에 다른 페이지 띄우기 -->
    <iframe src="http://www.dt.co.kr" width="300" height="300"></iframe>
    <iframe src="http://www.etnews.com" width="300" height="300"></iframe>
</body>
</html>
cs

 

위 코드를 적용하면 아래와 같이 나옵니다.

 

+ Recent posts