

링크 배포까지 성공하고 카톡으로 링크를 공유해봤는데 위 사진처럼 링크 타이틀과 설명이 바뀌지 않아요ㅠㅠ
Github 사이트에서도 수정된 것 적용, 저장 했고 10분 이상 기다리기도 했는데 바뀌지 않아요..
작성한 코드 및 에러 메세지
아래는 현재 Github 사이트에 저장된 코드
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="YYJ FC 링크 모음" />
<meta property="og:description" content="윤영주 축구교실 링크 모음" />
<meta property="og:image" content="공유할 이미지" />
<title>YYJ FC 링크 모음</title>
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
* {
font-family: "Pretendard",serif;
}
body{
background-color: #4d398a;
}
.profile {
width: 100px;
height: 100px;
background-color: rgb(5, 2, 47);
border-radius: 100%;
border: 2px solid white;
background-image: url('윤영주 FC 엠블럼.png');
background-position: center;
background-size: cover;
}
.main {
color: white;
font-size : 20px;
margin-top: 20px;
margin-bottom: 0px;
}
.sub {
color: white;
font-size : 14px;
margin-bottom: 0px;
}
.ssub{
color: white;
font-size : 10px;
margin-bottom: 30px;
}
.wrap{
width: 300px;
margin: 30px auto 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.wrap > a {
width: 300px;
height: 50px;
background-color: white;
border-radius: 8px;
margin-top: 10px;
margin-bottom: 10px;
font-size: 14px;
font-weight: bold;
color:#4d398a;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-decoration: none;
box-shadow: 3px 3px 5px 0px black;
}
.wrap > a:hover {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<div class="wrap">
<div class="profile"></div>
<h1 class="main">YYJ FC</h1>
<p class="sub">즐겁고 전문적인 축구교육</p>
<p class="ssub">아이들은 즐거울 때 가장 잘 배울 수 있으니까!</p>
<a target="_blank" href="http://pf.kakao.com/_CgKws">카톡 플러스친구 1:1 채팅 문의</a>
<a target="_blank" href="https://blog.naver.com/c78c3328/"> 네이버 블로그 (수업 사진이 한가득~)</a>
<a target="_blank" href="https://www.instagram.com/fc_ara.ladies/">여자풋살팀 아라레이디스 인별그램</a>
</div>
</body>
</html>
