유효성 검사 통과를 해보고 싶은데, 이게...

국내에 웹 사이트들이 웹 표준을 지키고 OS나 브라우저와 관계 없이 접근성을 향상 시키기 위한 사이트 버그 신고 및 문제 해결을 위한 게시판입니다.
댓글 게시
dirajrdmftlr
게시물: 1
참여됨: 2005 01 28 22:28 35
연락:

유효성 검사 통과를 해보고 싶은데, 이게...

게시물 작성자 dirajrdmftlr » 2005 01 28 22:54 44

아, 안녕하세요. 이너넷에서 html을 여러가지 '야메'로 배우다가 요새 들어서야 겨우 번역문서도 인내심갖고 찾아보는 초보랍니다. :D
근데 전에 여기 올라왔던 것 같은데, w3c에서 유효성 검사해주는 페이지에서 제가 직접 만든 걸 검사해보고 하는데, 야메로 배운 게 어디가지를 않고 박혀있는지 항상 에러가 여러개 발견되네요.
공식문서 번역은 봐도 뭐라고 하는지 모르겠고;

요게 그 에러 캡쳐인데; 그 널널한 프레임셋 선언에서도 요 모양이 나오는;
http://w45.ivyro.net/~dirajrdmftlr/mahaha.jpg
이 에러 대체 무슨 에러랍니까; 영어라서 나름대로 읽어봐도 모호한 것이, 전혀 뭔 말인지 모르겠어요. 번역기를 돌려보니 헛소리만 하고 앉았고;

요게 그거랍니다. 여유있으시면 확인 해주시고 이상한 점 있으면 '죄다' 지적해주시면 감사하겠습니다. :D
초보라는 점에 착안해서 인내있게 봐주시면;

코드: 모두 선택

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
       "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>WECBIS v 1.0</title>
<link rel="shortcut icon" href="wecbis.ico">
<link rel="stylesheet" href="./body.css" type="text/css">
<style type="text/css">
<!--
body {background-image:url(./bk.jpg);background-attachment:fixed;}
iframe {position:absolute;top:5%;left:5%;width:90%;height:80%;border-width:0;}
button {background-color:transparent;border-width:1;border-style:double;border-color:#5B5BFF;color:black;} 
input {background-color:transparent;position:absolute;left:32%;bottom:4%;width:35%;text-align:center;border-width:0;}
-->
</style>
<script type="text/javascript" src="./wecbis.js"></script>
</head>
<body onLoad="welcome()">
<iframe src="http://w45.ivyro.net/~dirajrdmftlr/bbs/zboard.php?id=scribble" scrolling="auto"></iframe>
<img src="./button.gif" style="position:absolute;bottom:8%;left:25%;width:80px;height:30px;" onClick="freedom()" 

onMouseover="message(1)" onMouseout="welcome()" alt="자유게시판">
<img src="./button2.gif" style="position:absolute;bottom:8%;left:35%;width:70px;height:30px;" onClick="literature()" 

onMouseover="message(2)" onMouseout="welcome()" alt="글게시판">
<img src="./button3.gif" style="position:absolute;bottom:8%;left:45%;width:80px;height:30px;" onClick="information()" 

onMouseover="message(3)" onMouseout="welcome()" alt="정보게시판">
<img src="./button4.gif" style="position:absolute;bottom:8%;left:55%;width:80px;height:30px;" onClick="oekaki()" 

onMouseover="message(4)" onMouseout="welcome()" alt="그림그리기">
<img src="./button5.gif" style="position:absolute;bottom:8%;left:65%;width:120px;height:30px;" onClick="together()" 

onMouseover="message(5)" onMouseout="welcome()" alt="함께만드는이야기">
<input type="text" value="WECBIS에 오신 것을 환영합니다." id="introduce">
<img src="./left.gif" style="position:absolute;bottom:10%;left:5%;width:32px;height:24px;" onClick="back()" 

onMouseover="message(7)" onMouseout="welcome()" alt="뒤로">
<img src="./right.gif" style="position:absolute;bottom:10%;right:5%;width:32px;height:24px;" onClick="go()" 

onMouseover="message(6)" onMouseout="welcome()" alt="앞으로">
<img src="./option.gif" style="position:absolute;bottom:9%;left:9%;width:24px;height:32px;" onClick="help()" 

onMouseover="message(8)" onMouseout="welcome()" alt="도움말">
<img src="./option.gif" style="position:absolute;bottom:9%;right:9%;width:24px;height:32px;" onClick="link()" 

onMouseover="message(9)" onMouseout="welcome()" alt="연결">
<img src="./option.gif" style="position:absolute;bottom:9%;right:13%;width:24px;height:32px;" onClick="level()" 

onMouseover="message(10)" onMouseout="welcome()" alt="레벨업">
<img src="./option.gif" style="position:absolute;bottom:9%;left:13%;width:24px;height:32px;" onClick="iname()" 

onMouseover="message(11)" onMouseout="welcome()" alt="이미지네임변경">
<button value="C 버전으로" style="position:absolute;bottom:0%;left:0%;" onClick="movetoc()">C 버전으로</button>
<button value="D 버전으로" style="position:absolute;bottom:0%;right:0%;" onClick="movetod()">D 버전으로</button>
</body>
</html>


덧, DOM이라는 것과 관련된 문서중에 번역된 건 하나도 없나요?

빛알갱이
해커
해커
게시물: 1146
참여됨: 2004 01 15 20:06 36

게시물 작성자 빛알갱이 » 2005 01 29 00:16 41

doctype을 잘못 쓰셔서 그렇습니다. html 4 frameset이 아니라 html 4.01 transitional loose로 해 보세요. iframe이 들어갔다고 frameset이 아니랍니다.

코드: 모두 선택

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
또, <head> 바로 다음에 다음을 꼭 넣으세요

코드: 모두 선택

<meta http-equiv="Content-Type" content="text/html; charset=CHARSETNAME">
위에서 CHARSETNAME 자리에는 실제 문서의 인코딩에 해당하는 값을 써 주시면 됩니다. UTF-8이면 UTF-8을 EUC-KR이면 EUC-KR을 쓰십시오.

댓글 게시

누군가 접속

유저들이 이 포럼을 탐색중: 가입된 유저 없음 그리고 2 손님들