
범규쌤의 콘솔창이구요
밑 코드는 제가 작성한 코드인데요,
이미지가 안 뜨네요 ㅠㅠ
답변 주시면 감사하겠습니당(꾸벅)
작성한 코드 및 에러 메세지
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>로그인페이지</title><style>
.mytitle {
background-color: green;
width: 300px;
height:200px;
color :white;
text-align: center;
background-image: url('https://www.ancient-origins.net/sites/default/files/field/image/Agesilaus-II-cover.jpg')
background-size: cover;
background-position: center;
}
</style>
</head>
<body><div class="mytitle"><h1>로그인 페이지</h1><h5>아이디, 비밀번호를 입력해주세요</h5></div>
<p>ID: <input type="text"/></p><p>PW: <input type="text"/></p><button> 로그인 하기</button>
</body>
</html>
