[HTML] meta Tag

daun·2022년 7월 20일
0

여러가지 메타테그

<head>
  <meta charset="UTF-8">
  <meta name="description" content="구글 검색하면 나오게 될 제목을 쓰세요.">
  <meta name="keywords" content="유입 검색 키워드를 쓰세요.">
  <meta name="viewport" content="width=device-width, initial-scale=1.0 "> // 화면 크기를 기기의 크기로 조정해주세요.
</head>

open graph

<head>
  <meta property="og:image" content="/이미지경로.jpg">
  <meta property="og:description" content="사이트설명">
  <meta property="og:title" content="사이트제목">
</head>

링크 공유하면 나올 이미지, 제목, 설명!

Favicon

<head>
  <link rel="icon" href="아이콘경로.ico" type="image/x-icon">
</head> 
  • ico대신 png 파일도 가능
  • 32*32 사이즈로 제작
profile
Hello world!

0개의 댓글