티스토리 뷰

xhtml/css

HTML 기본 마크업

sosohot 2015. 6. 26. 10:24

- PC웹

<!DOCTYPE html>
<html lang="ko">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title></title>
<meta name="robots" content="all" />
<meta name="keywords" content="디자인에이젼시, 웹디자인, CI디자인" />
<meta name="description" content="웹디자인을 진행하는 회사" />
<meta name="author" content="jeonlitae" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href=".css" />
</head>
<body>

</body>
</html>

 

- 모바일

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<title></title>
<link rel="stylesheet" href=".css">
<script type="text/javascript" src=".js"></script>
</head>
<body>

</body>
</html>

'xhtml/css' 카테고리의 다른 글

display:inline-block 여백 해결방법  (0) 2016.03.22
opacity 크로스 브라우징  (0) 2015.10.07
마진병합 팁  (0) 2015.07.08
ie 버전별 조건부 주석 간단한 작성 방법  (0) 2015.07.08
초기화 css  (0) 2015.06.26
댓글