how to code js within a html file code example
Example 1: how to reference a javascript file in html
<script type="text/javascript" src="path/filename.js"></script>
Example 2: how to write code in external javascript file
function myFunction() {
document.getElementById("demo").innerHTML = "Paragraph changed.";
}