

이렇게 뜨는 이유가 뭘까요?ㅜㅜ
↓작성한 app.py와 index.html 입니다!

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>Document</title>
<script>
function hey(){
alert('안녕!')
}
</script>
</head>
<body>
<button onclick="hey()">나는 버튼!</button>
</body>
</html>
//8행에 script src 줄을 지워도 똑같이 나오네요 플라스크도 제대로 설치했는데 왜 이럴까요??
