All about {Web}

HTML  vs  HTML5 [HyperText Markup Language 5]
HTML 5 is an Evolution, Not a Revolution. ( HTML 5는 혁명이 아닌 진화이다. )

HTML의 진화 :
1995 :  HTML 2.0
1997 :  HTML 3.2
1998 :  Web Standard Project
2000 :  XHTML 1.0
2000~2004 :  The Growth of the Web
2004 :  HTML5 - The Rise of the HTML 5

HTML5가 아닌 것들 :
CSS3 Transitions
Web Sockets
Geolocation
SVG
CSS3 @font-face

 

HTML 5가 HTML과 다른 점 :
01.웹문서의 첫 머리에 선언하는 문서타입( DOCTYPE )의 선언이 간편화
HTML 4 :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
HTML 5 :
<!doctype html> /* 대소문자 관계 없음 */

02. 언어셋 인코딩 (Character Encoding )
 HTML4 :
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
HTML5 :
<meta charset="utf-8">

03. HTML5에 추가된 새로운 요소들 (HTML 5 New Elements ; 26 elements )

 article

 aside

 audio

 canvas

command 

details

datalist

embed

figcaption

 figure

footer

header

hgroup

keygen

mark

meter

nav

 output

progress

rp

ruby

section

source

summary

time

video

 

 

 

 

 

'Web Design > HTML & HTML 5' 카테고리의 다른 글

HTML5 - New Structural Tags : <article>  (0) 2018.04.28
HTML5 - New Structural Tags : <section>  (0) 2018.04.26
HTML - META tag  (0) 2018.04.26
[HTML] 메타태그 - viewport (뷰포트)  (0) 2018.04.13
HTML5 브라우저 호환 테스트  (0) 2018.04.10