簡単なスクリプトを HTML ドキュメントにインポートしようとしています。うまくいかず、何が間違っているのかわかりません。
外部スクリプト名 --> (function.js)
window.onload = myFunction;
function myFunction()
{
document.getElementById("HERE").innerHTML = "message";
}
HTML ドキュメントの名前 --> (attributes.html)
<!DOCTYPEhtml>
<html>
<head>
<title> This is an example of using an external script</title>
<script type ="text/javascript" src= "function.js"></script>
</head>
<body>
<h1 id="HERE">
</h1>
</body>
</html>