Uncaught SyntaxError: missing ) after argument list [duplicate]
You have the same error repeated on each script. Look at the attribute delimiters. They start using double quotes, then switch: <script src=”https://…js’ defer onload='”> ^ ^ Should be: <script src=”https://…js” defer onload=””> The first single quote I’ve marked, ends the enclosing string. That’s not invalid, but not what is intended. Everything after that point … Read more