HTML
[html] DOCTYPE
우니010
2022. 3. 9. 17:18
반응형
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
<DOCTYPE> 은 문서의 타입을 지정한다.
DOCTYPE을 html로 지정하면 HTML5로 작성된 문서라고 나타낸다.
DOCTYPE을 명시하지 않아도 HTML5로 인식하지만 IE9 이전 버전의 브라우저는 다른 형태의 문서로 인식한다.
일괄된 것을 위해서 DOCTYPE을 입력하는게 좋다
반응형