
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
제가 원하는 폰트가 적용이 안됩니다. 어떤 오류 때문인지 궁금합니다.
작성한 코드 및 에러 메세지
오류<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>로그인 페이지</title>
<link href="https: //fonts.googleapis.com/css2? family= Jua & family= 나눔+펜+스크립트 & display=swap" rel="stylesheet">
<style>
*{
font-family: 'Jua', 산세리프;
font-family: '나눔펜 스크립트', 필기체;
}
.C{
color: white;
width: 300px;
height: 200px;
border-radius: 20px;
text-align: center;
padding:40px;
background-image: url("https://www.ancient-origins.net/sites/default/files/field/image/Agesilaus-II-cover.jpg");
background-size: cover;
background-position: center;
}
.D{
width: 300px;
margin: auto;
}
</style>
</head>
<body>
<div class="D">
<div class="C">
<h1>로그인 페이지</h1>
<h5>아이디, 비밀번호를 입력해주세요</h5>
</div>
<P>ID: <input type="text" /></P>
<P>PW: <input type="text" /></P>
<button>로그인하기</button>
</div>
</body>
</html>
발생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
