Hi there,
The HTML to use is as follows:
<a href="://www.google.com/search?safe=active&q=%22World+Politics%22"><img
src="locationoftheimage.ext" alt="World Politics"></a>
Breakdown of the HTML used
--------------------------
<a href=""></a> is the normal HTML code for a link
http://www.htmlhelp.com/reference/html40/special/a.html
://www.google.com/search?safe=active&q=%22World+Politics%22"
safe=active - tells Google to filter the results using safe search
q=%22World+Politics%22 - is the search phrase
%22 - stands for for a double quote
<img src="locationoftheimage.ext"> is the normal HTML code for an
image with a filename of locationoftheimage.ext. Because it is nested
with the link code, clicking on the image will take you to the Google
link.
http://www.htmlhelp.com/reference/html40/special/img.html
alt="World Politics" - these days it is expected to provide a text
description of an image. It will be seen when a visitor moves their
mouse over the image, or in place of the image for anyone using a
text-only browser.
Different queries
-----------------
To turn off "safe search", just remove safe=active& from the URL
To search for two keywords, not as a phrase, change
q=%22World+Politics%22
to
q=World+Politics
A single word query looks like this:
q=widgets
A four word query looks like:
q=widgets+thingies+stuff+gadgets
If any of the above is unclear, or if you need further assistance on
this topic, please do not hestitate to ask for a clarification.
Best wishes,
robertskelton-ga |