iframe은 현재 페이지에 다른 html 페이지를 출력하고자 할 경우에 사용되고 이렇게 만들어진 frame을 인라인 프레임이라고 함
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<! DOCTYPE html>
<html lang = "kr" >
<head>
<meta charset = "utf-8" >
<title> 키보드와 하루 </title>
</head>
<body>
1
<iframe src = "iframe.html" width = "300" height = "200" ></iframe>
2
<iframe src = "iframe2.html" width = "300" height = "200" ></iframe>
3
<iframe src = "http://www.tistory.com" width = "300" height = "200" ></iframe><br><br>
4
<a href = "http://www.tistory.com" target = "n_call" ></a>
<iframe width = "300" height = "200" </iframe>
</body>
</html>
|
1
2
3
4
5
6
7
8
9
10
11
|
<! DOCTYPE html>
<html lang = "kr" >
<head>
<meta charset = "utf-8" >
<title> 키보드와 하루 </title>
</head>
<body>
5
<a href = "http://www.tistory.com" target = "_parent" > 인라인 프레임에서 Parent로 티스토리 호출 </a>
</body>
</html>
|
1
2
3
4
5
6
7
8
9
10
11
|
<! DOCTYPE html>
<html lang = "kr" >
<head>
<meta charset = "utf-8" >
<title> 키보드와 하루 </title>
</head>
<body>
6
<a href = "http://www.tistory.com" target = "_self" > 인라인 프레임에서 self로 티스토리 호출 </a>
</body>
</html>
|
[html5] canvas - 웹 페이지에 그래픽 표현 (0) | 2021.02.24 |
---|---|
[html5] video - 웹 페이지에서 비디오 재생 (0) | 2021.02.23 |
[html5] multiple,datalist - 데이터 목록 나열 (0) | 2021.02.19 |
[html5] size,maxlength,minlength - 길이, 최대 글자 수, 최소 글자 수 (0) | 2021.02.18 |
[html5] readonly,required - 읽기 전용,필수 값 지정 (0) | 2021.02.17 |