Posted onEdited onInprogramming
,
htmlWord count in article: 754Reading time ≈3 mins.
SEO
검색엔진이 내가 작성한 문서들을 더 잘 이해하고 잘 가져가도록 하기 위함이다
title
<title> 은 검색엔진에서 제목으로 사용된다.
index title 작성방법
1
<title>Site/Company Name · Small keyword rich, catchy phrase · City, Country</title>
페이지별 작성방법
1
<title>Page Title · Site/Company Name</title>
유니크한 title 이 들어가야지 검색엔진이 인식합니다
meta description
사용예제
1
<metaname="description"content="A short sentence describing the purpose and content of this individual page.">
페이지별로 유니크해야 합니다
Max 80자 이내가 좋습니다. (네이버 검색엔진이 max 80 자를 요구함)
그밖에 중요사항
<h1> 은 한페이지에 1개 이어야 합니다. 중복되면 검색엔진이 싫어합니다
<a> (internal & outbound) 링크 태그는 a 태그를 사용하세요
<img alt="" width="" height=""> 이미지는 alt, width, height 가 있는 것을 검색엔진이 요구합니다.
<strong>, <em>
Page responsiveness 모바일 반응형도 검색엔진이 확인합니다
Page speed 페이지 스피드를 검사해서 개선하세요
HTTPS 보안 포트 사용하세요
정기적인 업데이트가 되어야 검색엔진이 indexing 을 해갑니다.
Domain & URLs
링크내 관계
<a> 태그 내에 rel 속성을 이용해서 관계를 표시하는데
대부분 검색엔진에서 제외를 하기 위해서
rel="nofollow" — When search engines should ignore the link for rankings
를 많이 사용합니다.
나머지는 이런게 있다는 참고만 하세요
rel="me" — When a link is about you
rel="spouse" — When a link is about your partner
rel="friend" — When a link is about your friend
rel="external" — When a link points to another website
rel="enclosure" — When a link points to a download
rel="license" — When a link points to the license file
rel="nofollow" — When search engines should ignore the link for rankings
See more social relationships
SNS 관련된 metadata
Open Graph Facebook, Instagram, Pinterest, LinkedIn 같은 곳에서 사용하는 태그 입니다. <head> 태그 하위로 추가합니다.
1 2 3 4 5 6 7
<metaproperty="og:type"content="website"> <metaproperty="og:locale"content="en_CA"> <metaproperty="og:title"content="Title of this page, same as title tag"> <metaproperty="og:url"content="http://fullurl.com/to-this/page/"> <metaproperty="og:image"content="http://fullurl.com/to-this/image.jpg"> <metaproperty="og:site_name"content="Name of your website"> <metaproperty="og:description"content="Description of this page, same as meta description">
Twitter Cards <head> 태그 하위로 추가합니다.
1 2 3 4 5 6
<metaname="twitter:card"content="summary"> <metaname="twitter:site"content="@yourtwitterhandle"> <metaname="twitter:title"content="Title of this page, same as title tag"> <metaname="twitter:url"content="http://fullurl.com/to-this/page/"> <metaname="twitter:description"content="Description of this page, same as meta description"> <metaname="twitter:image"content="http://fullurl.com/to-this/image.jpg">
Open Graph Protocol
Twitter Card Documentation
Geotagging & location data 위치 기반 서비스할 때 사용하는 meta 입니다