
css부분에서 폰트컬러 미적용사유를 모르겠음
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>로그인페이지</title>
<style>
.mytitle{
color: red;
font-size: 40px
}
.mybtn {
font-size: 12px
color: white;
background-color: green;
}
</style>
</head>
<body>
<h1 class="mytitle">로그인 페이지</h1>
<p>ID: <input type="text"/></p>
<p>PW: <input type="text"/></p>
<button class="mybtn">로그인하기</button>
</body>
</html>
작성한 코드 및 에러 메세지
color: white 미적용..되어서 다시 전강의 들으면서 천천히 따라해봣는데 안되서
뭐가문제인지 잘 모르겟습니다.
