-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrame.html
More file actions
47 lines (47 loc) ยท 1.28 KB
/
Frame.html
File metadata and controls
47 lines (47 loc) ยท 1.28 KB
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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>iframe</title>
</head>
<body>
<h3>iframe ๊ณต๊ฐ ๋ถํ ์์ (#04-01)</h3>
<p/>
<div>
์ฒซ๋ฒ์งธ <iframe> :
<span>
<a href="box_red.html" target="if_a">๋นจ๊ฐ</a>
|
<a href="box_green.html" target="if_a">๋
น์</a>
|
<a href="box_blue.html" target="if_a">ํ๋</a>
|
</span><br>
๋๋ฒ์งธ <iframe> :
<span>
<a href="box_red.html" target="if_b">๋นจ๊ฐ</a>
|
<a href="box_green.html" target="if_b">๋
น์</a>
|
<a href="box_blue.html" target="if_b">ํ๋</a>
|
</span><br>
์ธ๋ฒ์งธ <iframe> :
<span>
<a href="box_red.html" target="if_c">๋นจ๊ฐ</a>
|
<a href="box_green.html" target="if_c">๋
น์</a>
|
<a href="box_blue.html" target="if_c">ํ๋</a>
|
</span>
</div>
<br>
<div>
<iframe src="box_red.html" scrolling="no" width="200px" height="200px" name="if_a" frameborder="0"></iframe>
<iframe src="box_green.html" scrolling="no" width="200px" height="200px" name="if_b" frameborder="0"></iframe>
<iframe src="box_blue.html" scrolling="no" width="200px" height="200px" name="if_c" frameborder="0"></iframe>
</div>
<br>
์นํ๋ก๊ทธ๋๋ฐ2 ๊ณผ๋ชฉ์ ์์ ๊ณต๊ฐ์
๋๋ค
</body>
</html>