-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiframe.html
More file actions
40 lines (32 loc) · 988 Bytes
/
iframe.html
File metadata and controls
40 lines (32 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html lang= "ko">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="./css/mycss.css" type="text/css">
<style type="text/css">
iframe{
width : 100%;
height : 300px;
}
</style>
</head>
<body>
<pre>
iframe : html파일안에 다른 html파일을 포함시킨다.
a 링크의 target으로 지정가능하다
<iframe src="리스트.html" name="ifr">
<a target="ifr" href="아메리카노.html">아메리카노</a>
</pre>
<h1>커피메뉴</h1>
<a target="ifr" href="아메리카노.html">아메리카노</a> <!--타켓을 이용한다 -->
<a target="ifr" href="카페라떼.html">카페라떼</a>
<a target="ifr" href="카푸치노.html">카푸치노</a>
<a target="ifr" href="에스프레소.html">에스프레소</a>
<h1>multi</h1>
<a target="ifr" href="multi_audio.html">오디오/비디오</a>
<br>
<br>
<iframe src="리스트.html" name="ifr">
</body>
</html>