
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
링크 공유를 할 때 뜨는 사진은 어떻게 바꾸나요?
제목과 설명은 바꾸었는데 image 란에 이름을 넣었는데도 안 바뀌어요.
그리고 배경 색 대신 사진을 넣으려면 어떻게 해야하나용 ㅠ?
<!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="Rin's page" />
<meta property="og:description" content="You can contact me" />
<meta property="og:image" content="SNOW_20220102_091317_238" />
<title>르탄이 - 프로필 링크</title>
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
* {
font-family: "Pretendard",serif;
}
body{
background-color:#456ef4;
}
.profile{
width:100px;
height:100px;
border-radius: 100%;
border:2px solid white;
background-image:url('나리대표사진.jpg');
background-position:center;
background-size:cover;
}
.main {
color:white;
font-size:20px;
margin-top: 30px;
margin-bottom: 10px;
}
.sub{
color:white;
font-size:14px;
margin-top: 0px;
margin-bottom: 30px;
}
.wrap{
width: 300px;
margin: 30px auto 0px auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.wrap > a {
width: 300px;
height: 50px;
background-color: white;
border-radius: 8px;
margin-bottom: 10px;
font-size: 14px;
font-weight: bold;
color: #456ef4;
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">나리 Rin</h1>
<p class="sub">🤍 My page 🤍</p>
<a target="_blank" href="https://instagram.com/rin._.allw2see?igshid=OGQ2MjdiOTE=">Instagram</a>
<a target="_blank" href="https://instagram.com/maru.baby_forever?igshid=OGQ2MjdiOTE=">MARU Instagram</a>
<a target="_blank" href="https://m.blog.naver.com/nari0695">Blog</a>
<a target="_blank" href="https://open.kakao.com/o/szJO9iXe">Contact Rin</a>
</div>
</body>
</html>
