html 기본 구조


필요할 때, 자꾸 검색해서 찾아야 해서 간단한 구조 작성해둔다.

<!DOCTYPE html>
<html lang="ko">
  <head>
    <meta http-equiv="Content-Type" charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0">
    <title>Page Title</title>
  </head>
  <body>
    <h1>타이틀</h1>
    <p>본문</p>
  </body>
</html>

<meta http-equiv="Content-Type" charset="utf-8" /> 해당 문서 언어 설정

<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"> 렌더링 모드 설정 (최신 렌더링 모드로 강제)

<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0"> 뷰포트 설정(모바일 접속 시 모바일 맞춤)

+ Recent posts