load other files in my page in url code example
Example 1: import script html
<html>
<head>
<script type="text/javascript" src="/path/to/script.js"></script>
...
Example 2: html load js file
<script src="myscripts.js"></script>
<html>
<head>
<script type="text/javascript" src="/path/to/script.js"></script>
...
<script src="myscripts.js"></script>