|
|
|
|
How to add Google search in Dreamweaver
You can use Google search engine as a search tool on any website. Let me show you how simple it is to add it to a website.
|
|
 |
|
|
|
|
|
 |
|
 |
|
 |
 |
1.
|
|
|
Open HTML document and click on the spot where you want to have Google search.
|
|
|
2.
|
|
|
Click Code to open your document in HTML view.
|
|
|
3.
|
|
|
Now place this code on the spot in the picture (this is the spot where you are located in the document):
<form method="get" action="http://www.google.com/search"> <input type="text" name="q" size="30" maxlength="255" value="" /> <input type="submit" value="Iskanje" /> <input type="radio" name="sitesearch" value="" /> google <input type="radio" name="sitesearch" value="zmaga.com" checked /> zmaga.com </form>
|
|
|
4.
|
|
|
The code is placed.
Now rename value="dreevoo.com" to any text. For example "Search my side".
|
|
|
5.
|
|
|
Click Design to see your page in a design view.
|
|
|
6.
|
|
|
You can move radio buttons bellow the search window (press ENTER behind the Search button).
|
|
|
7.
|
|
|
Save the page (Ctrl + S) and press F12 to see your page.
Enter any text in search window and select your page.
Click Search.
|
|
|
8.
|
|
|
Google search will show only hits on your page.
|
|
|
9.
|
|
|
If you choose google page, Google search will show all hits.
|
|
|
 |
 |
 |
|
 |
|
|