Is it possible to link directly to Google search results using href?

38,554

Please have a look at the link below:

http://www.googleguide.com/linking.html

<a href=”http://www.google.com/search?q=Google+tutorial+create+link”>
   Google tutorial create link
</a>
Share:
38,554
Frank
Author by

Frank

I like to program web games! I rarely publish them, but for me the fun is in the work. Unfortunately, my language of choice is now JavaScript and I have to deal with HTML5 and the wonderful world of unstable browsers. I started programming with Flash in AS2, then AS3. It got me hooked on graphics applications and then became obsolete. Now I'm all about some HTML5! It's crazy what you can do with JavaScript these days. I don't know a whole lot about anything else, though. Anyway, happy coding!

Updated on March 25, 2020

Comments

  • Frank
    Frank about 4 years

    I would like to link directly to a search results page from a standard link. To give an example of what I'm hoping for, here is some pseudocode:

    <a href = "https://www.google.com/search?keywords=My+Search+Parameters">Click here to search Google</a>
    

    Is there any way to do this? I would like to redirect my users directly to a search results page so they can see real results on the web.

  • Frank
    Frank about 8 years
    Alright, well, that was apparently an obvious question. Thanks for the quick answer!