Including the Script
Direct Linking
You can set a direct link to the script and use it as an independent page. You can customize the HTML template to fit in your website layout.
SSI Include
In case your server supports SSI (Server Side Includes) you can include the script with following line:
<!--#include virtual="./counter_script/index.php" -->
Replace ./counter_script/index.php with the correct path to your script.
If that doesn't work please rename your HTML file into .shtml. Please ask also your webspace provider, whether your server supports SSI.
PHP Include
You can include the script in an existing PHP file by using the include() instruction:
<?php
include('./counter_script/index.php ');
?>
Replace ./counter_script/index.php with the correct path to your script.