Frontend/HTML & CSS
[HTML] HTML Living Standard란?
Deeb
2022. 3. 29. 23:07
HTML5는 처음 개발 공부할때부터 들어왔고 로고로도 굉장히 익숙하다.
그런데 수업 중 HTML Living Standard를 HTML5라고 지칭하는게 옳지 않다고 하셔서
그 이유에 대해 정리해보았다.
🚩 HTML Living Standard란 ?
버전 숫자와는 상관없이 HTML 문법 등을 규정한 표준으로, 버전이라는 개념을 사용하지 않고 유동적으로 계속 업데이트한다는 의미이다. 현재 WHATWG에서 HTML5를 현존하는 LIving Standard로서 인정하고 있기 때문에 HTML5와 혼동하여 사용되기도 한다.
WHATWG 에서도 확인할 수 있다.
The HTML Living Standard (sometimes informally called HTML5). The HTML specification has been a living document without version numbers since 2011. It includes both HTML, the core markup language for the web, and a number of related APIs.
HTML Living Standard은 종종 비공식적으로 HTML5라고 불린다. HTML의 스펙(specification)은 2011년부터 버전 넘버 없이 살아있는 표준(living standard)으로 존재한다. HTML Living Standard는 웹의 핵심적인 마크업 언어인 HTML과 여러 관련 API들을 모두 포함한다.
🚩 HTML
HTML은 Hyper Text Markup Language로 World Wide Web 즉 웹 페이지를 위한 핵심 마크업 언어이다. 원래 HTML은 주로 과학 문서를 의미론적으로 설명하기 위한 언어로 설계되었지만 일반적인 디자인으로 인해 이후 몇 년 동안 다른 여러 유형의 문서와 응용 프로그램을 설명하는 데에도 적용될 수 있었습니다.
🚩 알아두면 좋을 HTML5 태그
### The document element
- html
### Document metadata
- head
- title
- meta
- link
- style
### Sections
- body
- article
- section
- nav
- aside
- h1, h2, h3, h4, h5, h6
- hgroup
- header
- footer
- address
### Grouping content
- p
- blockquote
- ol
- ul
- menu
- li
- dl
- dt
- dd
- figure
- figcaption
- main
- div
### Text-level semantics
- a
- em
- strong
- cite
- q
- dfn
- abbr
- code
- var
- span
- br
- wbr
### Embedded content
- img
- picture
- source
- iframe
- video
- audio
- track
- Tabular data
- table
- caption
- colgroup
- col
- tbody
- thead
- tfoot
- tr
- td
- th
### Forms
- form
- fieldset
- legend
- label
- input
- button
- textarea
- select
- option
- Interactive elements
- details
- summary
- dialog
반응형