'validator'에 해당되는 글 1건

  1. 2012.11.09 HTML5 변경 및 Validator를 이용한 검사
WEB
posted by 구름너머 2012. 11. 9. 09:22

<HTML5이전>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
 <title>헤드 퍼스트 라운지</title>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 <link type="text/css" rel="stylesheet" href="lounge.css">
 <script type="text/javascript" src="lounge.js"></script>
</head>

======================================================================================

<HTML5> 아래처럼 간단해 졌습니다.

<!doctype html>
<html>
<head>
 <title>헤드 퍼스트 라운지</title>
 <meta charset="utf-8">
 <link rel="stylesheet" href="lounge.css">
 <script src="lounge.js"></script>
</head>

 

Validation 검사 :

http://validator.w3.org/

도메인으로나 파일로도 검사가 가능하다.

This document was successfully checked as HTML5!

'WEB' 카테고리의 다른 글

구글 크롬 버전별 다운로드하기  (0) 2012.11.29
WebLogic SSL 설정  (0) 2012.11.13
appengine templete 렌더링시 한글오류 처리  (0) 2012.11.07
google appengine 으로 app 만들고 올리기  (0) 2012.10.19
centOS6.3 설치 외  (0) 2012.10.16