HTML 메타테그(Meta tag) 및 기타 테그
페이지 정보
본문
1. 필수 메타
검색 SEO 관련 메타 내용은 https://www.happyjung.com/lecture/2369 에서 확인
<meta http-equiv="imagetoolbar" content="no"> <!-- 이미지에 나타나는 툴바를 제거합니다 -->
<meta http-equiv='Cache-Control' content='no-cache'> <!-- 캐쉬를 사용안함 -->
2. 캐릭터셋 지정 메타
<meta http-equiv="content-type" content="text/html; charset=euc-kr"> <!-- 한국어 -->
<meta http-equiv="content-type" content="text/html; charset=Shift_JIS"> <!-- 일본어 -->
<meta http-equiv="content-type" content="text/html; charset=iso-2022-jp"> <!-- 일본어 -->
<meta http-equiv="content-type" content="text/html; charset=EUC-JP"> <!-- 일본어 -->
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <!-- 영어 -->
<meta http-equiv="content-type" content="text/html; charset=utf-8"> <!-- 다국어 -->
3. 선택적 메타
<meta http-equiv="refresh" content="3; url=이동페이지주소"> <!-- 3초후에 페이지로 자동 이동 -->
<meta http-equiv="Pragma" content="no-cache"> <!-- 캐쉬(오프라인 파일)사용을 금지함 -->
<meta http-equiv="expires" content="MON, 01 apr 2002 00:00:01 GMT"> <!-- 지정된 시간 이후에는 웹문서 캐쉬(cache) 금지 -->
4. Favicon (파비콘: 사이트 아이콘) 위치지정
<link rel="icon" type="image/png" href="/somewhere/myicon.png">
<link rel="icon" type="image/x-icon" href="/somewhere/myicon.ico">
<link rel="shortcut icon" type="image/x-icon" href="/somewhere/myicon.ico">
5. 외부 자바스크립트 파일
<script type="text/javascript" src="외부 자바스크립트 사용시 파일.js"></script>
6. 스타일시트
<link rel="stylesheet" type="text/css" href="외부 스타일시트 사용시 파일.css">
<style type="text/css">
@import url("/css/_happyjung_.css");
</style>
댓글목록
등록된 댓글이 없습니다.