<!DOCTYPE html>
<head>
<meta charset="UTF-8"/>
<title>연습</title>
</head>
<body>
//script가 시작하는 부분
<script type="text/javascript">
window.alert('Hello javascript');
</script>
<noscript>javascript를 이용할 수 없습니다.</noscript>
</body>
</html>
위의 예시에서는 body 안에 속해 있다.
본 책에서는 다음과 같이 위치할 수 있다고 소개한다.
<body>
<script type="text/javascript" src="scripts/hello.js </script><script type="text/javascript" src="scripts/hello.js>
<script type="text/javascript">
window.alert('Hello javascript');
</script>