Here you go: <form action="https://google.com/search" target="_blank" type="GET"> <input type="search" name="q"> <input type="submit" value="search"> </form> Just a smidge of JavaScript trickery to enforce the site it searches: var form = document.querySelector("form"); form.addEventListener("submit", function(e) { e.preventDefault(); var search = form.querySelector("input[type=search]"); search.value = "site:css-tricks.com " + search.value; form.submit(); }); I'm only 12% joking there. I think sending people over to Google search results for just your site for their search term is perfectly acceptable. Nobody will be confused by that. If anything, they'll be silently pleased. Minor adjustments could send them to whatever search engine. Like DuckDuckGo: https://duckduckgo.com/?q=site%3Acss-tricks.com+svg Still: They will leave...