I have a problem on my website. I hope someone has an Idea how to fix it.
I want to do a built in search bar for my website which searches Google for the search word but adds top 5 before it so like: top 5 [search word]. (If the user types in bananas for instance, the website would open a new window with a Google search for: top 5 bananas)
I tried to find out how i could make this possible but I have no Idea how to do this.
I tried to build a html form:
<form action="https://www.google.com/search" method="GET">
<input type"text" name="q" placeholder="Search">
<input type="submit" value="Search">
</form>
But i can´t put the get form action to https://www.google.de/search?&q=top+5
I hope you can help me with my question.