<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>target 속성 활용</title>
</head>
<body>
<h3>target 속성 활용</h3>
<hr>
<iframe src="news1.html" name="left" width="250" height="500">
</iframe>
<iframe src="http://www.W3C.org" name="right" width="400" height="500">
</iframe>
<br><br><!-- name="right"는 한 문서에서 이름이 겹치면 안돼!! -->
<iframe src="news2.html" name="left2" width="250" height="500">
</iframe>
<iframe src="https://www.greenpeace.org/" name="right2" width="400" height="500">
</iframe>
</body>
</html>