Open Graph 미리보기 링크 만들기
블로그스팟 링크 카드 미리보기 생성기 / Blogger link preview card generator
lognplus.com티스토리에서는 주소만 입력해도 자동으로 썸네일과 설명이 딱 뜨잖아요?
그런데 블로그스팟(Blogger)을 쓰다 보면, 단순한 링크 텍스트만 보이니까 뭔가 허전하고 밋밋합니다.
저도 이게 답답해서 한참 찾아봤는데, 드디어 직접 링크 미리보기 카드를 만드는 방법을 알게 되었어요 😊
이제는 URL만 넣으면 이미지 + 제목 + 설명이 함께 들어간 카드형 링크를 블로그스팟에서도 만들 수 있습니다. 오늘은 그 방법을 차근차근 알려드릴게요!
On Tistory, when you paste a link, it automatically shows a thumbnail and description. But on Blogger, it only displays a plain text link, which feels incomplete. I felt the same frustration, so I searched and finally found a way to create link preview cards manually. Now, just by entering a URL, you can display a card with image, title, and description right inside Blogger posts. In this guide, I’ll walk you through the simple steps!
블로그스팟 본문에 사용할 링크 미리보기 HTML 코드를 생성하세요.
Open Graph 미리보기 링크 만들기
블로그스팟 링크 카드 미리보기 생성기 / Blogger link preview card generator
lognplus.com티스토리나 카카오톡 같은 플랫폼은 OG(Open Graph) 태그를 자동으로 읽어서 미리보기를 만들어 줍니다.
쉽게 말해, 글 주소(URL)에 숨어 있는 <meta property="og:title">, <meta property="og:description">, <meta property="og:image"> 정보를 꺼내 보여주는 거예요.
하지만 블로그스팟(Blogger)은 이런 기능을 기본 제공하지 않습니다.
단순히 텍스트 링크만 붙여 넣기 때문에, 썸네일이나 설명이 뜨지 않아 밋밋하게 보이는 거죠. 즉, 자동 미리보기 엔진이 없는 구조라고 이해하시면 됩니다.
그래서 우리가 직접 HTML+CSS+JS 코드를 이용해, 링크를 입력하면 해당 사이트의 제목·설명·이미지를 읽어와 카드형 박스로 만들어주는 방식을 쓰는 겁니다.
이렇게 하면 티스토리처럼 자동은 아니지만, 거의 동일한 카드 미리보기를 블로그스팟에서도 구현할 수 있습니다 🎯
Platforms like Tistory or KakaoTalk use Open Graph (OG) tags to generate link previews.
For example: <meta property="og:title">, <meta property="og:description">, and <meta property="og:image">.
These tags let the system show the title, description, and thumbnail automatically.
However, Blogger does not have a built-in preview engine. When you paste a link, it only shows plain text without images or descriptions. That’s why Blogger links look simple and less attractive by default.
To solve this, we use a small HTML+CSS+JS code snippet that fetches the link’s title, description, and image and displays them as a stylish card. It’s not fully automatic like Tistory, but it looks and works almost the same 🚀
먼저 블로그 전체에 카드형 링크 스타일을 적용하기 위해 CSS 코드를 추가해야 합니다.
이 코드는 블로그스팟 테마의 <head> ... </head> 안, <!-- TITLE --> 주석 바로 위에 넣어주세요.
👉 이렇게 한 번만 넣어두면, 이후 글 본문에서 카드 구조를 불러올 때마다 자동으로 같은 디자인이 적용됩니다.
<!-- 링크 메이커 스타일 코드 -->
<style>
.generated-link-card {
display:flex;flex-direction:column;width:100%;max-width:600px;margin:15px auto;
border:1px solid #e0e0e0;border-radius:12px;overflow:hidden;text-decoration:none;color:#333;
box-shadow:0 4px 8px rgba(0,0,0,.05)
}
.generated-link-card .thumbnail{width:100%;height:auto}
.generated-link-card .thumbnail img{width:100%;height:auto;display:block;object-fit:cover}
.generated-link-card .content{padding:15px}
.generated-link-card .title{
font-size:16px;font-weight:700;color:#333;margin:0 0 5px;line-height:1.4;
overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical
}
.generated-link-card .description{
font-size:13px;color:#777;margin:0 0 10px;line-height:1.4;
overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical
}
.generated-link-card .domain{font-size:12px;color:#777;font-weight:500}
@media (min-width:481px){
.generated-link-card{flex-direction:row;align-items:center}
.generated-link-card .thumbnail{width:150px;height:150px;flex-shrink:0}
.generated-link-card .thumbnail img{width:100%;height:100%;object-fit:cover}
.generated-link-card .content{padding:15px;flex-grow:1}
}
</style>
To apply the card link design site-wide, paste this CSS snippet into your Blogger theme.
Go to Theme → Edit HTML and insert it inside <head> ... </head>, just above the <!-- TITLE --> comment.
Once added, all future posts that use the card structure will automatically adopt this style.
테마에 CSS를 넣었다면, 이제 글 본문에 카드 구조 HTML을 삽입할 차례입니다.
아래 코드를 새글-연필그림- 'Html 보기'에 원하는 위치에 그대로 붙여넣으면 됩니다.
Once the CSS is in your theme, you can insert this HTML block into any post. Just replace the href, image URL, title, description, and domain with your own values. This will render a neat card-style link inside your post.
테마 → HTML 편집 버튼을 클릭합니다.<!-- TITLE --> 부분을 찾습니다.HTML 모드로 전환합니다.Theme → Edit HTML.<!-- TITLE --> and paste the CSS code above it.Q1. Why doesn’t Blogger show previews automatically?
Because Blogger doesn’t have a built-in Open Graph reader engine. It only shows plain links.
Q2. Is an image required?
If no image URL is provided, a placeholder image will appear. For best results, use a 1200×800px thumbnail.
Q3. Can I add multiple cards in one post?
Yes. Just copy-paste the card HTML block multiple times. The CSS applies globally.
이제 블로그스팟에서도 티스토리처럼 세련된 링크 미리보기 카드를 만들 수 있게 되었어요 ✨
단순한 텍스트 링크가 아닌, 이미지 + 제목 + 설명이 함께 들어간 카드형 링크는
방문자들의 눈길을 끌고 체류시간까지 늘려줍니다.
오늘 소개해드린 방법은 테마에 CSS 한 번 추가하고, 글 본문에서 HTML 코드만 간단히 붙여넣기 하면 끝납니다. 앞으로 작성하시는 글이 훨씬 더 깔끔하고 신뢰감 있게 보일 거예요.
혹시 이 글이 도움이 되셨다면 공유와 즐겨찾기 부탁드립니다 🙏
여러분의 응원이 더 좋은 팁을 준비하는 큰 힘이 됩니다.
댓글
댓글 쓰기