
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
<title> 2023 BucketList </title>의 내용이
웹페이지 제목(https://~~)으로 가는게 아니라 페이지 상단에 뜨는데 이유가 뭘까요?

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewpoint" content="width=decive-width, initial-scale=1.0">
<meta property="og:title" content="Jesimsim 2023 BucketList" />
<meta property="og:description" content="What's your dream?" />
<meta property="og:image" content="profile.jpg"
<title>2023 BucketList</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@400;500;600;700&display=swap');
* {
font-family: 'Hahmlet', serif;
}
.title{
color:white;
background-color : tomato;
font-size : 24px;
padding: 4px 14px;
border-radius: 8px;
}
.bg{
width:360px;
background-image : url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bg-grid.png");
}
.msg{
font-weight: bold;
}
.bucket{
width: 160px;
height: 160px;
}
.img1{
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-red.png");
background-size: cover;
background-position: center;
}
.img2{
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-lightred.png");
background-size: cover;
background-position: center;
}
</style>
<link rel="stylesheet" type="text/css" href="https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/sparta-bucket2.css">
<!--스타일시트 -->
</head>
<body class="bg center">
<h1 class="title">2023 신년 계획</h1>
<p class="msg">2023년에 이룰 다짐!</p>
<div class="row flex-row wrap">
<div class="bucket img1 center">AI부트캠프 무사히 수료</div>
<div class="bucket img2 center">캐글 대회 참가(수상)</div>
<div class="bucket img2 center">세줄일기 꾸준히 쓰기</div>
<div class="bucket img1 center">데이터 포트폴리오 만들기</div>
<div class="bucket img1 center">사이드 프로젝트로 수익창출</div>
<div class="bucket img2 center">보컬 트레이닝 받기</div>
</div>
</body>
