I have put google serach engine box in my webpage. I want that my own choiced keywarod for eg movies, films should appear by default in that search engine. How i can do this. Now blank serach box is appearing and visitors can put keywords of their own choice for search. But i want my own keywords should appear for search by default. Please help me.
There is indeed a simple HTML trick how you can put desired keyword(s) in the Google search form. The code for the AdSense search starts with: <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" /> ..... Code (markup): Change the first input like: <input type="text" name="q" size="31" maxlength="255" value="YOUR KEYWORD(s)" /> However, thinking about your visitors. It can be annoying if they first have to delete the default keyword and place their own. Why do not give them the chance to search what they want to?