이 페이지 어디가 잘못된 건가요 ???

국내에 웹 사이트들이 웹 표준을 지키고 OS나 브라우저와 관계 없이 접근성을 향상 시키기 위한 사이트 버그 신고 및 문제 해결을 위한 게시판입니다.
Post Reply
초보

이 페이지 어디가 잘못된 건가요 ???

Post by 초보 »

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" 
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<meta content="text/css" http-equiv="Content-Style-Type" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Title</title>
</head>

<frameset cols="20%, 80%">
    <frame src="html_chunk_index.html" >
    </frame>
    <frame src="empty.html" name="contents" >
    </frame>
    <noframe>
    
    </noframe>
</frameset>

</html>
이런 페이지를 만들었는데요, validator.w3.org 로 검사해보면 frame 태그를 닫지 않았다며 에러가 납니다. 뭐가 문제일까요 ???
hyeonseok
해커
해커
Posts: 691
Joined: 2004 08 11 22:14 59
Contact:

Post by hyeonseok »

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<meta content="text/css" http-equiv="Content-Style-Type" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Title</title>
</head>

<frameset cols="20%, 80%">
    <frame src="html_chunk_index.html" />
    <frame src="empty.html" name="contents" />
    <noframes>
        <body>
            <p>sds</p>
        </body>
    </noframes>
</frameset>
</html>
이렇게 하시면 됩니다.

noframe이 아니라 noframes입니다.
초보

Post by 초보 »

감사합니다...
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest