The following is a complete working example of the basic Web site visitor hit counter source code.
You may copy-paste the below contents of this page (beginning with the </html> at the bottom, up to the <html> below the perforated line) into a blank .txt file in your computer. It is a complete HTML page.
Study it carefully, making any changes you wish to make (e-mail recipient, redirect, etc.), change the extention from .txt to .html, upload the file to your domain's file manager, and test the page.
------------------------------------------------------------------
<html>
<head>
<title>Copy Paste This First Code</title>
<Script Language="JavaScript">
<!--
function SendOne()
{
document.EmailMe.submit();
}
-->
</Script>
</head>
<body onload="SendOne()">
<FORM ACTION="/cgi-bin/formmail.pl" METHOD="POST" name="EmailMe">
<input type=hidden name="recipient" value="YourEmailAddress.Com">
<input type=hidden name="redirect" value = "http://www.YourDomain.com/YourChosenPage.html">
</Form>
</body>
</html>