Search Video and Film Sites
Tuesday, August 12, 2008
Search Engines and Directories
It is the dream of every internet entrepreneur to have lots of traffic to his or her website. After all, without a steady stream of visitors to your website, how will you earn your online fortune?
The first place you should go when you need a quick traffic feed is the search engines. A top ranking in one of the major engines is the most effective way to increase the traffic to your website.
Albeit, you should however know that statistics show that most surfers never search beyond top 30 results they receive. In fact more than 40% of web surfers will stop reading after the top 10 results! With that in mind, your goal should be to get top ranking positions in search engines for the terms most frequently searched by your target audience.
Getting top ranking in the search engines, however, is not as easy as it sounds. You need to learn the “right” techniques if you want to ensure that your site is well ranked. You need to take advantage of the search engines and build your traffic base.
But first, you need to understand the different types of search technologies being used by your audience and how you can use them to your advantage.
So, what is a search engine? Basically, search engines are programs that use “spiders”; also referred to as crawlers, robots and bots, to crawl the web and automatically index your website based on algorithms (mathematical formulas). Sounds confusing?
Well, for now, here’s what you need to know. The first thing you need to understand about search engines is that in order to get listed in the search engines, you need to submit your website to them. This is to ensure that the spiders find your site and index it.
The second thing you need to understand is that search engines algorithms are constantly changing. What works this week may not work a month from now or even two weeks from now. As a result, submitting your website to the search engines and then forgetting about it is risky. Your listing needs to be optimized and then maintained if you want to generate the traffic that a top spot can bring.
Search engines are not the ultimate answer to dreams of internet success for most online business, but they are definitely a good start. Search engines continue to be a great source of cheap and often free traffic for website owners who are willing to learn the rules required to snag a top ranking spot.
If your website ranks under the keywords most frequently searched by your potential customers, search engines can also be a great source of highly targeted traffic for your website. This is traffic that you can easily convert into subscribers and sales provided your opt-in and sales process is doing its job.
A directory on the other hand, is a compilation of websites that is created and maintained by human editors rather than electronic spiders or robots. The editors review submitted sites and then rank them based on specific criteria.
One of the best examples of a directory is Yahoo, where reviewers organize websites by major topics and sub-topics. Another well known directory is the Open Directory Project (www.dwoz.org) which prides itself on being entirely free, run by volunteer editors who work to provide useful results to searches.
Home Biz Tools
![]() By William Bontrager When you want a form that can be submitted without requiring the rather prominent submit button, this article shows you how, with several methods:
This article contains step-by-step
instructions with code examples. I think you'll find it easy to follow. <form name="MyForm" method="POST" action="/cgi-bin/script.cgi">
Second step, the JavaScript — <a href="javascript:document.MyForm.submit();"> Click to submit the form </a>
Optional third step — <noscript> <input type="submit" name="Click here"> </noscript>
The above will display the submit
button only when non-JavaScript browsers visit the page. <form name="MyForm" method="POST" action="/cgi-bin/script.cgi"> <input type="checkbox" name="MyCheck" onClick="DoSubmission();"> Check when done with form Second step, the JavaScript — <script type="text/javascript" language="JavaScript"><!-- function DoSubmission() { document.MyForm.submit(); } //--></script>
Put the JavaScript anywhere on your
page, in the HEAD or BODY area, above or below the form. <form name="MyForm" method="POST" action="/cgi-bin/script.cgi"> <input type="hidden" name="ThisPageURL" value=""> <input type="hidden" name="TimeZoneOffset" value=""> </form>
You'll need to add a hidden field
to let your CGI program know the URL of the "thank you" page it should use. <script type="text/javascript" language="JavaScript"><!-- document.MyForm.ThisPageURL.value = document.URL; var x = new Date(); document.MyForm.TimeZoneOffset.value = x.getTimezoneOffset(); document.MyForm.submit(); //--></script>
When the page is loaded, the JavaScript
will automatically fill in the form with the web page's URL and the time
zone offset information from your visitor's computer, and then automatically
submit the form. After processing the form information, the CGI program presents
a "thank you" page. <iframe height="300" width="200" src="WebPageContainingAutomaticForm.html"> </iframe>
Adjust the URL so the web page containing
the automatically submitted form loads into the IFRAME tag. And adjust the
height and width to accommodate the "thank you" page.
|