The problem in your page is a missing closing tag, it’s not depending on Google Analytics code.
You have to append </script>
here:
<script src="script/script.js">
Which must become:
<script src="script/script.js"></script>
And the website will work again (including Google Analytics, which is already working):
CLICK HERE to find out more related problems solutions.