메뉴 건너뛰기

HEUKMYO

Mobile

모바일 코딩에 사용하는 기본 html



<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Mobile coding</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- user-scalable=no 사용자 단말의 확대기능 사용 유무 선언 -->
<meta name="format-detection" content="telephone=no address=no, email=no"> <!-- 숫자 입력시 전화번호, 지도, 이메일 사용금지 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta content="경로/apple-touch-icon-precomposed.ico"><!-- 웹 앱으로 실행 할때, 일반 앱처럼 보이도록 사파리 브라우저의 ui를 안나타나게 해주는 역할 -->
<link rel="apple-touch-icon" href=""> <!-- 아이폰에서 북마크 추가시 바탕화면 이미지 아이콘 -->
<link href="경로/apple-touch-icon-precomposed.ico" rel="shortcut icon" type="image/x-icon"><!-- 파비콘 등록(114*114)-->
</head>
<body>

</body>
</html>

  1. [2014/09/22] 140807_[jquery] html by 흑묘 (132)
위로