head 태그란?


<head> 태그는 문서정보(메타데이터)를 담고 있습니다.

브라우저 화면에 직접적으로 보이지는 않지만, 숨은 데이터를 정의하는 태그들이 들어가 있습니다.

예를들면 <title> <base> <meta> <link> <style> <script> 등 이러한 태그들이 그 대표적인 태그들입니다.

head 안에 배치할 수 있는 요소


오픈그래프 Open Graph


콘텐츠의 요약내용이 SNS에 게시되는데 최적화된 데이터를 가지고 갈 수 있도록 설정하는 것

기본적으로 웹에 설정해줘야하는 og 메타태그

<meta property="og:type" content="website">
<meta property="og:url" content="<https://example.com/page.html>">
<meta property="og:title" content="Content Title">
<meta property="og:image" content="<https://example.com/image.jpg>">
<meta property="og:description" content="Description Here">
<meta property="og:site_name" content="Site Name">
<meta property="og:locale" content="en_US">
<!-- 다음의 태그는 필수는 아니지만, 포함하는 것을 추천함 -->
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">

Naver 블로그, 카카오톡 미리보기 설정