
박스랑 폰트가 활성화되어보이지 않는데 뭐가 문제인걸까요.
보고 계신 화면 전체를
캡처해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요.
작성한 코드 및 에러 메세지
<!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=Nanum+Pen+Script&display=swap');
*{
font-family: 'Nanum Pen Script', cursive;
}
.title{
color: white
background-color:dodgerblue
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-t2 center">
<h1 class="title-t3">2023 신년계획</h1>
<p class="msg">2023년 만족할 수 있는 한 해를 보내자!</p>
<div class="row flex-row wrap">
<div class="bucket img1 center">일상만화 12개</div>
<div class="bucket img2 center">카카오톡 이모티콘 내기</div>
<div class="bucket img2 center">1000만원 저축하기</div>
<div class="bucket img1 center">도트 만들기</div>
<div class="bucket img1 center">인체 크로키 500장</div>
<div class="bucket img2 center">일주일에 2번은 운동하기</div>
</div>
</body>
</html>
