LinkedIn과 같은 사이트에서 웹사이트의 미리보기 카드를 개선하는 방법.

인트로



개인 프로젝트를 주최하고 LinkedIn이나 대부분의 소셜 네트워크에서 공유할 때 일반적으로 설명, 제목 또는 이미지가 표시되지 않는다는 것을 눈치채셨을 것입니다. 그리고 일반적으로 다음과 같이 보입니다..



이 짧은 튜토리얼은 LinkedIn과 같은 사이트에 대한 미리보기 카드를 생성하여 다음과 같이 보일 수 있도록 도와줍니다.




사용법



다음은 제 첫 번째 LinkedIn 미리보기 카드를 만드는 데 도움이 된 2단계 및 리소스입니다.
  • LinkedIn은 HTML의 <meta> 태그 내부에 있는 <head> 태그를 확인하지만 "Open Graph Protocol"유형인 메타 태그도 찾습니다. 다음은 HTML<head> 태그 안에 추가해야 하는 태그입니다. Open Graph Protocol에 대한 자세한 내용은 다음에서 확인할 수 있습니다. here .

  • 
    <meta property='og:title' content='My Title'/>
    <meta property='og:image' content='URL to the image you want in the preview, LinkedIn recommends a 1.91:1 ratio (1200x627px)'/>
    <meta property='og:description' content='This should be a very short description'/>
    
    


    2. 1단계가 완료되면 LinkedIn의 Post Inspector를 활용하여 어떻게 보이는지 확인합니다. Post Inspector 링크는 다음과 같습니다. ( )




    내 코드는 다음과 같습니다.

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <link href="styles.css" rel="stylesheet">
        <script src="script.js" async></script>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Atma:wght@300&display=swap" rel="stylesheet">
        <title>Kid's Halloween Memory Card Game</title>
        <meta property='og:title' content='Kids Halloween Memory Card Game'/>
       <meta property='og:image' content='Assets/Images/preview3.png'/>
       <meta property='og:description' content='A fun Halloween themed Kids Memory Card Game. The game has animations and music which kids will enjoy!'/>
    </head>
    <body>
    





    나는 내 지식을 공유하는 것을 좋아하며 이것이 귀하의 LinkedIn 카드에 도움이 되기를 바랍니다! 🎉

    좋은 웹페이지 즐겨찾기