
2-10강 2:20초 부분의 문법 연습하기용으로
코드스니펫 prac.html 스켈레톤 부분을 복사해서 붙여넣고 alt+B로 확인하는 부분이 있는데
흰화면만 나오고 창이 뜨지 않습니다
첨부드린 화면 왼쪽의 태그를 붙여 넣고
alt+b 실행 시 흰화면만 나와 연습 진행이 안되는데
복붙한 태그가 안되는 것이라 어떤부분의 오류인지 알수가 없습니다.


작성한 코드 및 에러 메세지
<!DOCTYPE html>
<html>
<head>
<title>자바스크립트 문법 연습하기!</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<style>
.button-part {
display: flex;
height: 50px;
}
</style>
<script>
</script>
<body>
<div class="top-part">
<h1>자바스크립트 문법 연습하기!</h1>
</div>
<hr/>
<br>
<h2>1. 함수</h2>
<div class="button-part">
<button onclick="checkResult()">결과 확인하기!</button>
</div>
<div class="list-part">
<h2>2. 리스트</h2>
<div id="q1"></div>
</div>
<div class="dict-part">
<h2>3. 딕셔너리</h2>
<div id="q2"></div>
</div>
<div>
<h2>4. 리스트 딕셔너리</h2>
<div id="q3"></div>
</div>
</body>
</html>
