add js into html code example
Example 1: how to link your js file to html
<script src="index.js"></script>
Example 2: include js in html
<html>
<head>
</head>
<body>
<script type="text/javascript" src=es4.js></script>
</body>
</html>
Example 3: how to add javascript in html
$(document).ready(function() {
// add your code here
})