WEB/HTML5-CONCEPT
예제 2-24. target 속성으로 프레임 윈도우 활용
너래쟁이
2017. 11. 4. 18:39
ex2-24.html
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>target 속성 활용</title> </head> <body> <h3>target 속성 활용</h3> <hr> <iframe src="ex2-24-sitelist.html" name="left" width="200" height="300"> </iframe> </iframe> </body> </html> | cs |
2-24-sitelist.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <!DOCTYPE html> <html> <head> <title>사이트 리스트</title> </head> <body> <h3>사이트 리스트</h3> <hr> <ul> </ul> </body> </html> | cs |
2-24-sitelist.html
ex2-24.html