
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
1-4강 강의에서 버킷리스트를 2개씩 나열하는 부분을
입력하였는데 1줄로 다르게 나와서 확인 부탁드립니다!
작성한 코드 및 에러 메세지
<!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년 버킷리스트</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: blueviolet;
font-size: 24px;
padding: 4PX 14px;
border-radius: 8px;
}
.BG {
width: 360;
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">올해는 목표를 이루자!</P>
<div class="row flex-row wrap">
<div class="BUCKET IMG1 center">식자 진행</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>
</html>
