<html>
<head>
<title>인라인 스크립트</title>
</head>
<body>
<button onclick="alert('IN-Iine')">클릭</button>
</body>
</html>
실행결과
<html>
<head>
<title>인라인 스크립트</title>
</head>
<script>
console.log("내부 스크립트")
</script>
<body>
</body>
</html>
실행결과
consoloe.log('외부스크립트')
<!DOCTYPE html>
<html>
<head>
<title>외부스크립트</title>
</head>
<body>
<script src="index.js"></script>
</body>
</html>
실행결과