ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 검색 엔진 최적화(SEO)를 위한 HTML에 몇 가지 태그
    IT-Information/Blog-operation 2023. 11. 21. 19:06

    검색 엔진 최적화(SEO)를 강화하기 위해서 HTML에 몇 가지 추가적인 태그를 고려할 수 있습니다.

     

    1. Open Graph Tags (OG Tags)

    소셜 미디어 플랫폼에서 콘텐츠를 공유할 때 이 태그들이 중요합니다. 예를 들어, og:title, og:description, og:image, og:url 등이 있습니다.

    html
       <meta property="og:title" content="Your Website Title">
       <meta property="og:description" content="Brief description of your website">
       <meta property="og:image" content="URL to image representing the content">
       <meta property="og:url" content="https://goldsystem.tistory.com/">

     

    2. Twitter Card Tags

    Twitter에서 콘텐츠를 공유할 때 유용합니다. twitter:card, twitter:title, twitter:description, twitter:image 등이 있습니다.

     <meta name="twitter:card" content="summary_large_image"> 
     <meta name="twitter:title" content="Your Website Title"> 
     <meta name="twitter:description" content="Brief description of your website"> 
     <meta name="twitter:image" content="URL to image representing the content">

     

    3. Schema Markup

    구글과 같은 검색 엔진에게 웹페이지의 콘텐츠를 더 잘 이해시키는 데 도움이 됩니다. 이는 JSON-LD 형식으로 작성됩니다.

    <script type="application/ld+json"> { 
     "@context": "https://schema.org", 
     "@type": "Website", 
     "name": "Your Website", 
     "url": "https://goldsystem.tistory.com/", 
     "image": "URL to image representing the content",
     "description": "A brief description of your website" 
      } 
     </script>

     

    4. Sitemap and Robots.txt

    검색 엔진이 사이트를 더 잘 크롤링하도록 돕습니다. sitemap.xmlrobots.txt 파일을 생성하고 링크를 제공하는 것이 좋습니다.

    <link rel="sitemap" type="application/xml" 
     title="Sitemap" href="https://goldsystem.tistory.com/sitemap.xml">

    robots.txt 파일은 사이트의 루트 디렉토리에 배치해야 합니다.

     

    이러한 태그들은 웹사이트의 가시성과 소셜 미디어에서의 공유 가능성을 향상시키는 데 도움이 됩니다. SEO는 지속적인 과정이므로, 콘텐츠를 정기적으로 업데이트하고 성능을 모니터링하는 것이 중요합니다.

     

     

Copyright 2025