<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<script>
alert('Hello world');
</script>
</body>
</html>
script 태그 안에 있는 alert('Hello world'); 만 자바스크립트
그 외의것들은 html 이다.
자바스크립트는 html 위에서 작동한다.