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"> 뷰포트 설정(모바일 접속 시 모바일 맞춤)
'~2022 > FE-HTML, CSS, ...etc' 카테고리의 다른 글
CSS3 란 (Cascading Style Sheets) (0) | 2019.06.05 |
---|---|
HTML5 란? (0) | 2019.06.05 |
<video>태그 브라우저, 모바일 이슈 정리 사항 (0) | 2019.05.16 |
CSS3 Selector :nth-child(n+n)를 알아보자 (0) | 2018.10.26 |
html만으로 아코디언 메뉴 만들기(details와 summary태그) (0) | 2018.10.23 |
HTML 특수 문자 처리 (엔티티 테이블) (0) | 2018.10.23 |
CSS animate 가위바위보 연속 움직이는 애니메이션 만들기 (0) | 2018.10.17 |
유튜브 영상 너비(width)값에 맞추어 높이(height)값 비율 맞추기 (1) | 2018.10.02 |