Jump to content

Recommended Posts

Posted

Hello,i'm about to give you some guides about Google functions.

 

  • 1.Google Functions:
  • 1.1 Google Search Function on your website
  • 1.2 Google Listing your website when searching it at www.google.com
  • 1.3 Another method to add your site in google.com

 

 

1.1 Google Search Function on your website

 

First off, the good news. Google itself actually has a nice page offering you HTML code you can just cut and paste onto your own Web pages to produce the search box you seek, and some variants beside. Just check out Google Free.

 

Instead of relying on the bright sparks at Google, though, let's go through the steps of building our own search box instead, so you'll be able to see how it works.

 

Also, not to pick on Google because I think the world of those folk, but their HTML samples could be cleaned up a bit, usually, so I've also recast it as proper XHTML rather than somewhat sloppy HTML. Just don't tell Larry and Sergey, okay?

 

The basic technique involved here is to be able to manipulate one of the variables handed to the Google search engine, a variable called sitesearch. Set it to a null value and you're searching the entire World Wide Web, but set it to a specific domain and it's constrained exactly as if you had typed in the Google special notation site:domain.

 

In addition to that, you need an input field and a submit button. Put them all together and here's the minimalist Google search form that lets the user alternate between just your site (well, in this case just my site) or the entire Web:

 

<form method="get" action="http://www.google.com/search">

<input type="text"   name="q" size="31"
maxlength="255" value="" />
<input type="submit" value="Google Search" />
<input type="radio"  name="sitesearch" value="" />
The Web
<input type="radio"  name="sitesearch"
value="yoursite.com" checked /> Ask Flower<br />

</form>There are some additional tweaks we can apply to make it a bit more fancy, including changing the radio buttons to a single check box, and aligning things a bit more nicely using a table and some simple CSS: 
<form method="get" action="http://www.google.com/search">

<div style="border:1px solid black;padding:4px;width:20em;">
<table border="0" cellpadding="0">
<tr><td>
<input type="text"   name="q" size="25"
maxlength="255" value="" />
<input type="submit" value="Google Search" /></td></tr>
<tr><td align="center" style="font-size:75%">
<input type="checkbox"  name="sitesearch"
value="yoursite.com" checked /> only search Ask Flower<br />
</td></tr></table>
</div>

</form>

 

 

When it visualisate you'll see Ask Flower search in codes and change to your name or server and put your link instead of "yoursite.com"

 

1.2 Google Listing your website when searching it at www.google.com

 

How does Google find your site and list it? Merely registering your domain on the Internet isn’t enough.

 

As soon as your site is available on the Internet, you can submit it to Google by completing the add URL form at www.google.com/addurl.html.

 

Another way to be listed — and to raise your PageRank too — is by getting other websites to link to yours. After that, when Google’s robots or spiders, known as Googlebot, crawl the web, they should run across your site within a month or so. As we mentioned in the page How Google Works, there are two types of crawls, fresh crawls and deep crawls. Your site most likely will first get a fresh crawl in which only pages Google deems most important are crawled. After Google runs a deep crawl of your site, most, if not all of the pages on your website that contain links from other pages will be crawled and subsequently listed on Google — except pages that are included in the file robots.txt, which lists pages that you don’t want Google to crawl and pages containing code that Google is unable to parse. (Other search engines — though not all of them — also obey your instructions in robots.txt.)

 

Recently Google developed Google Base, a service, like a bulletin board, for posting all types of content, e.g., coupons, reviews, jobs, housing, events, tickets, merchandise. Things for sale may get cross posted on Google’s Product Search and locations may get cross posted from Google Base to Google Maps.

 

1.3 Another method to add your site in google.com

 

Adding a site to GooglePrint

 

Inclusion in Google's search results is free and easy; you don't even need to submit your site to Google. Google is a fully automated search engine that uses software known as "spiders" to crawl the web on a regular basis and find sites to add to our index. In fact, the vast majority of sites listed in our results aren't manually submitted for inclusion, but found and added automatically when our spiders crawl the web.

 

However, if your site offers specialized products, content, or services (for example, video content, local business info, or product listings), you can reach out to the world by distributing it on Google Web Search. For more information, visit Google Content Central.

 

To determine whether your site is currently included in Google's index, do a site: search for your site's URL. For example, a search for [ site:google.com ] returns the following results: http://www.google.com/search?q=site%3Agoogle.com .

 

Although Google crawls billions of pages, it's inevitable that some sites will be missed. When our spiders miss a site, it's frequently for one of the following reasons:

 

The site isn't well connected through multiple links from other sites on the web.

The site launched after Google's most recent crawl was completed.

The design of the site makes it difficult for Google to effectively crawl its content.

The site was temporarily unavailable when we tried to crawl it or we received an error when we tried to crawl it. You can use Google Webmaster Tools to see if we received errors when trying to crawl your site.

Our intent is to represent the content of the internet fairly and accurately. To help make this goal a reality, we offer guidelines as well as tips for building a crawler-friendly site. While there's no guarantee that our spiders will find a particular site, following these guidelines should increase your site's chances of showing up in our search results.

 

Consider creating and submitting a detailed Sitemap of your pages. Sitemaps are an easy way for you to submit all your URLs to the Google index and get detailed reports about the visibility of your pages on Google. With Sitemaps, you can automatically keep us informed of all of your current pages and any updates you make to those pages. Please note that submitting a Sitemap doesn't guarantee that all pages of your site will be crawled or included in our search results.

 

 

Next guide will include:

1.How to remove your site from google.com

2.How to remove single pages on your website from google.com

3.How to remove cached pages from google.com

 

Enjoy the guide hope you like it,any questions goes here.Wait for the another topic.

Credits: Google.com and me for making it.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...