
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
스타일 시트 링크를 적용했는데 검은색이어야할 글쓰 부분도 하얀 글씨로 바뀌어 나옵니다..
2.추가로 2024 신년계획 타이틀이 저는 자꾸
2024 신년
계획
이런식으로 나와서 헤드 안쪽 타이틀 정의에 폰트 사이즈를 지정했거든요..
왜 저는 폰트 사이즈를 지정해야만 글씨가 한 줄로 나오는지 (강의에선 따로 폰트 사이즈 지정을 하지 않는 것 같은데) 이것도 궁금합니다!
보고 계신 화면 전체를 캡

처해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요.
작성한 코드 및 에러 메세지
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>2024 나만의 신년 계획</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Hahmlet:wght@300&display=swap");
* {
font-family: "Hahmlet", serif;
}
.bg{
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bg-grid.png");
background-position: center;
background-size: cover;
margin: auto;
width: 360px;
}
.title {
background-color: skyblue;
border-radius: 10px;
color: white;
font-size: 20px; -> 폰트 사이즈 추가 임의로함
text-align: center;
padding: 4px 14px;
}
.bucket {
width: 160px;
height: 160px;
background-position: center;
background-size: cover;
}
.img1 {
background-image: url('https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-red.png');
}
.img2 {
background-image: url('https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-lightred.png');
}
</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">
<h1 class="title">2024 신년 계획</h1>
<p>올해 안에 3가지 목표를 달성하지 못한 경우,</p>
<p>1년간 초콜렛 먹지 않겠습니다</p>
<div>
<div class='bucket img1'>몸과 수치 정상으로 돌리기</div>
<div class='bucket img2'>아빠 거래처 3곳 이상 상반기 안에 달성</div>
<div class='bucket img1'>영어 쉐도잉 4편 마스터</div>
<div class='bucket img2'>예창패 도전</div>
<div class='bucket img2'>월 수익 2000만원 달성</div>
</div>
<script
src="https://replit.com/public/js/replit-badge-v2.js"
theme="dark"
position="bottom-right"
></script>
</body>
</html>
