구글 블로그의 경우 우선 HTML을 통해 블로그 홈페이지에서 개설한 모든 SNS에 접속할 수 있는 링크를 제작
이때 구분을 위해 각 SNS 고유의 색상을 참고해 각 SNS 칸을 분리 후 색상 첨가
아래는 HTML 주석
<!doctype html>
<table border="1" style="border-collapse: collapse;">
<tr>
<td style="background-color: #1877F2; width: 130px; height: 130px; text-align: center; vertical-align: middle; padding: 0;">
<a href="https://www.facebook.com/profile.php?id=61585051126609&locale=ko_KR" target="_blank" style="color: white; font-weight: bold; text-decoration: none; display: block; height: 100%; line-height: 130px; font-size: 15px;">
페이스북
</a>
</td>
<td style="background-color: #0652DD; width: 130px; height: 130px; text-align: center; vertical-align: middle; padding: 0;">
<a href="https://www.facebook.com/groups/913268408077935?locale=ko_KR" target="_blank" style="color: white; font-weight: bold; text-decoration: none; display: block; height: 100%; line-height: 130px; font-size: 15px;">
페이스북 그룹
</a>
</td>
<td style="background-color: #25CCF7; width: 130px; height: 130px; text-align: center; vertical-align: middle; padding: 0;">
<a href="https://www.facebook.com/profile.php?id=61580799279027&locale=ko_KR" target="_blank" style="color: white; font-weight: bold; text-decoration: none; display: block; height: 100%; line-height: 130px; font-size: 15px;">
페이스북 페이지
</a>
</td>
<td style="background-color: #E1306C; width: 130px; height: 130px; text-align: center; vertical-align: middle; padding: 0;">
<a href="https://www.instagram.com/secondhandealer182/" target="_blank" style="color: white; font-weight: bold; text-decoration: none; display: block; height: 100%; line-height: 130px; font-size: 15px;">
인스타그램
</a>
</td>
<td style="background-color: #22B14C; width: 130px; height: 130px; text-align: center; vertical-align: middle; padding: 0;">
<a href="https://www.band.us/band/101886452/post" target="_blank" style="color: white; font-weight: bold; text-decoration: none; display: block; height: 100%; line-height: 130px; font-size: 15px;">
네이버 밴드
</a>
</td>
<td style="background-color: #000000; width: 130px; height: 130px; text-align: center; vertical-align: middle; padding: 0;">
<a href="https://www.threads.com/@secondhandealer182" target="_blank" style="color: white; font-weight: bold; text-decoration: none; display: block; height: 100%; line-height: 130px; font-size: 15px;">
쓰레드
</a>
</td>
<td style="background-color: #F57C00; width: 130px; height: 130px; text-align: center; vertical-align: middle; padding: 0;">
<a href="https://secondhanddomain.blogspot.com/" target="_blank" style="color: white; font-weight: bold; text-decoration: none; display: block; height: 100%; line-height: 130px; font-size: 15px;">
구글 블로그
</a>
</td>
</tr>
</table>
</!doctype>
해당 방식으로 제작 후 각 링크에 정상 접속 되는지 확인 완료 하였음
다음으로 현재 페이스북에 등록된 제품을 판매하기 위해 구글 블로그 게시글에 판매제품을 연동하는 방법을 선택
이 때도 마찬가지로 HTML을 활용해 페이스북에서 상품 사진이 보인 채 사진 클릭 시 바로 판매처로 연동할 수 있도록 설정하였음
아래는 HTML 주석
<!doctype html>
<table border="1" style="width: 75px; border-collapse: collapse;">
<tr>
<iframe src="https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2Fpermalink.php%3Fstory_fbid%3Dpfbid0YNn5QTboUm1vjmYXiakxuHNL3kSTZrxaUXgv8dJS8twhS2bs2pP8odDamgZA1phDl%26id%3D61580799279027&show_text=true&width=150" width="150" height="150" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe>
</tr>
</table>
</!doctype>