
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
주석 단축키인 Ctrl + / 를 눌렀을때
/만 보여집니다.
기존에 있던 코드는 남아있어야하는데 모두 사라지고 /만 남네요.

작성한 코드 및 에러 메세지
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>sign in PAGE</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@500&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Noto Serif KR', serif;
}
.mytitle {
width: 300px;
height: 200px;
color: white;
text-align: center;
background-image: url("https://images.pexels.com/photos/159027/bokeh-blue-light-blue-neon-159027.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
background-size: cover;
background-position: center;
border-radius: 10px;
padding-top: 40px;
}
.wrap {
width:300px;
margin:auto;
}
</style>
</head>
<body>
<div class="wrap">
<div class="mytitle">
<h1>Sign in page</h1>
<h5>put your ID and PW </h5>
</div>
<p>ID: <input type="text" />
<p>PW: <input type="text" />
<p><button> Sign in </button>
</p>
</div>
</body>
</html>
오류 발생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
