I had participated in the ( somewhat ) recent poll, and I noticed something was mentioned about getting traffic through web keywords. Today I looked at the source code of this website ( in FireFox: View>Page source [ non-editable ] ), and I noticed there is a lack of keywords. This explains why Phrogram.com never shows up in a web search. This is easily fixed by doing thus:
- Downloading the web pages ( not the entire site ) using an FTP client.
- Open "index.html" ( or whatever ) in Notepad.
- Add "<meta name="keywords" content="programming beginner kids easy fun"> & <meta name="description" content="The Phrogram Company: programming for everyone that's easy, fun and cool!"> to the lines directly after the <head> line.
- Upload them to the web server again.
The html would look like the following:
...
<head>
<meta name="keywords" content="programming beginner kids easy fun">
<meta name="description" content="The Phrogram Company: programming for everyone that's easy, fun and cool!">
...
Obviously you would replace the highlighted text with your own keywords/description. You may need to repeat step 3 for all of the pages. Or you could simply write a program to do it for you. :P