메타태그는 <head>와</head>사이에 들어가며,
웹페이지에 관한 정보를 제공합니다.
<meta http-equiv="content-type"
content="text/html; charset=euc-kr" /> :웹문서의 언어를 설정 (euc-kr)
<meta
http-equiv="content-type" content="text/html; charset=utf-8" /> :웹문서의 언어를
설정 (utf-8)
<meta http-equiv="imagetoolbar" content="no" /> :그림위에 마우스
오버시 이미지 관련 툴바가 생기지 않음
<meta http-equiv="refresh" content="0;
url=http://이동주소" /> :0초후 해당 페이지이동
<meta http-equiv="refresh"
content="60" /> :60초마다 새로고침
<meta http-equiv="pragma"
content="no-cache" /> : 캐쉬에서 해당페이지 읽어들이는 걸 방지
<meta name="subject"
content="홈페이지주제" />
<meta name="title" content="홈페이지이름" />
<meta name="description" content="홈페이지 설명" />
<meta
name="keywords" content="홈페이지 키워드" />
<meta name="author"
content="홈페이지 주인 or 작성자" />
<meta name="publisher" content="만든단체나회사"
/>
<meta name="other Agent" content="웹책임자" />
<meta
name="classification" content="카테고리위치(분류)" />
<meta name="generator"
content="홈페이지 제작도구" />
<meta name="reply-to" content="메일주소" />
<meta name="filename" content="파일이름" />
<meta
name="author-date" content="제작일" />
<meta name="location"
content="홈페이지 위치(소속국가)" />
<meta name="distribution" content="배포자"
/>
<meta name="copyright" content="저작권" />
<meta
NAME="content-language" content="kr" /> : 기술된 언어
◇ 메타태그의 검색로봇
관련
<meta name="robots" content="all"
/> : 로봇 검색을 허가함
<meta name="robots"
content="none" /> : 로봇 검색을 허가하지 않음
<meta
name="robots" content="index,follow" /> : 이 문서도 긁어가고 링크된 문서도 긁어감.
<meta name="robots" content="noindex,follow" /> : 이 문서는 긁어가지 말고
링크된 문서만 긁어감.
<meta name="robots" content="index,nofollow" /> : 이
문서는 긁어가되, 링크는 무시함.
<meta name="robots" content="noindex,nofollow"
/> : 이 문서도 긁지 않고, 링크도 무시함.
'Web Progreming' 카테고리의 다른 글
[ 리눅스 ] APM 설치시 configure error (0) | 2010.12.03 |
---|---|
[ 리눅스 ] 이미지 업로드 참고사항 (0) | 2010.11.22 |
[ JavaScript ] offsetWidth, offsetHeight, clientWidth, clientHeight, scrollWidth, scrollHeight (2) | 2010.11.09 |
[ 자바스크립트 ] 주민등록번호 유효성 체크 (0) | 2010.11.01 |
[ 자바스크립트 ] 숫자 체크 / 이메일체크 / 한글체크 (0) | 2010.11.01 |