
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
작성한 코드 및 에러 메세지
<!DOCTYPE html>
<html lang="en">
<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">
<title>2023 To Do List</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap');
* {
font-family: 'Nanum Pen Script', cursive;
}
.title {
color: rgb(255, 255, 255);
font-size: 100px;
}
.bg {
background-image: url("https://img.freepik.com/premium-vector/vector-cloud-or-smoke-on-a-blue-background-cloud-smoke-fog-sky-png_156846-1020.jpg");
background-repeat: no-repeat;
background-size: 130%;
background-position: center center;
}
.msg {
color: white;
font-size: 40px;
}
.bucket {
width: 250px;
height: 250px;
font-size: 30px;
}
.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>
<h2 class="msg">올해는 꼭 지키자!</h2>
<div class="flex-row wrap">
<div class="bucket img1-t3 center">코딩 공부하기</div>
<div class="bucket img2-t3 center">집 이사하기</div>
<div class="bucket img1-t3 center">치과위생사 보수교육 듣기</div>
<div class="bucket img2-t3 center">베이킹 꾸준히 하기</div>
<div class="bucket img1-t3 center">건강한 다이어트</div>
<div class="bucket img2-t3 center">월 1권 독서</div>
</div>
</body>
</html>
