웹디자인/애용코드모음

프레임셋파일 - xhtml 버전

progh2 2005. 7. 5. 18:20
[CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr" /> <meta http-equiv="Pragma" content="No-Cache" /> <meta http-equiv="Expires" content="0" /> <meta name="description" content="" /> <meta name="keywords" content="" /> <link rel="SHORTCUT ICON" href="./img/favicon.ico" /> <title># 타이틀 #</title> </head> <frameset rows="0,*"> <frame name="frame_hidden" src="파일1" scrolling="no" marginwidth="0" marginheight="0" /> <frame name="frame_view" src="파일2" scrolling="auto" marginheight="0" marginwidth="0" /> <noframes> <body> <p>이 사이트는 프레임을 사용합니다. 죄송하지만 프레임을 지원하는 브라우져를 사용해 주세요</p> </body> </noframes> </frameset> </html>[/CODE]