HTML·CSS·JQuery
HTML 초기 세팅
ID.V
2020. 2. 9. 12:00
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>