Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 959
Frank Avatar asked Mar 24 '16 16:03

Frank


People also ask

How do I link directly to Google search results?

The easiest way to find the correct encoding is to type your query into a Google Search box. Then run the search and look at the resulting URL in your web browser's address box (which is usually in the toolbar at the top of the window). Copy and paste the parts you need from the URL into your HTML code.

How do I add a link to Google search?

Open the Google search engine home page. Click on the link at the bottom that says "Business Solutions." Click the "More business products" link under the footer heading "Business essentials." Click the "Submit Your Content" link under the heading "Webmaster tools."


1 Answers

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>
like image 111
Devnsyde Avatar answered Sep 20 '22 20:09

Devnsyde