제목 : 예제. 026. 프레임만들기(FRAMESET태그).htm
<html>
<head>
<title>프레임 연습</title>
</head>
<frameset rows="17%, 83%" cols="1*">
<frame name="banner" scrolling="no" marginwidth="10" marginheight="14" src="027. 상단메뉴.htm">
<frameset rows="1*" cols="20%, 80%">
<frame name="contents" scrolling="auto" marginwidth="10" marginheight="14" src="028. 좌측메뉴.htm">
<frame name="detail" scrolling="yes" marginwidth="10" marginheight="14" src="029. 메인페이지.htm">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>이 페이지를 보려면, 프레임을 볼 수 있는 브라우저가 필요합니다.</p>
</body>
</noframes>
</frameset>
</html>