본문 바로가기
HTML·CSS·JQuery

HTML 초기 세팅

by ID.V 2020. 2. 9.

XHTML 1.0 Transitional 세팅

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <title>  </title>
    <link type='text/css' rel="stylesheet" href="common/css/common.css" />
</head>
<body>

</body>
</html>

HTML5 세팅

<!DOCTYPE HTML>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0 user-scalable=yes" >
    <meta name="format-detection" content="telephone=no, address=no, email=no" />
    <title>  </title>
    <link rel="stylesheet" href="common/css/mobile.css" />
</head>
<body>

</body>
</html>

 

'HTML·CSS·JQuery' 카테고리의 다른 글

인쇄 기능 삽입하기  (0) 2020.02.14
iOS 인풋(input) 및 버튼(button) 스타일 제거 및 설정  (0) 2020.02.13
웹언어에 따른 인클루드  (0) 2020.02.12
테이블 기본 구조 세팅  (0) 2020.02.11
반응형 사이트  (0) 2020.02.10

댓글