본문 바로가기

IT Study/Web

[HTML] iframe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
 
<!-- iframe : 웹페이지안의 웹페이지 -->
 
<h1>여기는 index5.html입니다.</h1>
 
<iframe src="http://zum.com" width="400" height="500"></iframe>
 
</body>
</html>
cs


iframe

HTML 화면 안에 영역을 두어 또다른 html화면이나 image파일등을 보여줄 수 있는 frame



'IT Study > Web' 카테고리의 다른 글

[HTML] 경도,위도 구하기  (0) 2018.08.06
[HTML] form 기본 예제  (0) 2018.08.06
[HTML] CSS 적용방법 3가지  (0) 2018.08.06
[HTML] List 종류  (0) 2018.08.06
HTML 테이블 응용  (0) 2018.07.25