Tools & systems
How to Add Google Search to Your Internal Google Site
For teams that move fast, even the intranet should stay out of the way
If your team relies on Google all day, the last thing your intranet should do is make them leave it to run a search. Here is a quick, brandable way to drop a working Google search box right onto your internal Google Site, with no API keys and no plugins.
This came out of real client work. A virtual executive support firm asked for help streamlining internal operations, and one piece of that was a Google Site to act as the team's homepage for SOPs, updates, and key resources. We set it as the default homepage through the Google Admin portal, so anyone logged into their work account landed there the moment they opened a browser.
There was one missing piece: Google Search. By default, Google Sites gives you no built-in way to embed a search bar. So the homepage was front and center, but to actually search the web, people still had to bounce away to a new tab. That extra step is small, but small friction multiplied across a whole team every day adds up. The intranet needed to feel like a launchpad, not a dead end.
The fix: a lightweight, branded search bar
The solution is a clean HTML form that behaves like a Google search box, dropped in through Google Sites' own <embed> feature. It redirects queries straight to Google, opens results in a new tab, and is styled to match the team's brand.
Here is the core code, with the client's brand red applied:
<form method="get" action="https://www.google.com/search" target="_blank" style="text-align: center; margin-top: 50px;">
<input
type="text"
name="q"
placeholder="Search Google..."
style="width: 90%; max-width: 500px; padding: 12px 20px; font-size: 16px; border: 1px solid #bf1e2e; border-radius: 24px; outline: none; color: #bf1e2e;">
<input
type="submit"
value="Search"
style="margin-left: 10px; padding: 10px 20px; font-size: 14px; border: 1px solid #bf1e2e; border-radius: 4px; background-color: #f8f9fa; cursor: pointer; color: #bf1e2e;">
</form>
To add it, edit your Google Site, insert an Embed block, choose the embed-code option, and paste the form in. Swap #bf1e2e for your own brand color and adjust the max-width to taste.
What each line does
| Code | What it does |
|---|---|
<form method="get" action="https://www.google.com/search"> | Sends the query to Google. |
name="q" | The field name Google reads as the search term. |
target="_blank" | Opens results in a new tab, so the homepage stays put. |
style="..." | Controls layout, padding, borders, and brand colors. |
placeholder="Search Google..." | Prompt text shown before the user types. |
type="submit" | Runs the search when the user hits enter or clicks the button. |
Why it works for fast-moving teams
- Fewer clicks. Nobody has to open a new tab just to search.
- One place for everything. SOPs, updates, and web search all live on the same homepage.
- Time saved. Especially for remote and virtual teams who search constantly as part of client work.
It is a five-minute upgrade that removes a five-second friction, multiplied by every person, every day.
Limitations to know
This is not a live Google widget. There is no autocomplete and there are no search suggestions. You cannot track what people search for unless you layer on Google Tag Manager. Results are not embedded in the page; they open on Google in a new tab. For fast, brand-consistent utility inside your team's main workspace, none of that matters. It just works.
The bigger idea
The best solution does not always require a full integration. Sometimes a little HTML and a clear sense of the job to be done is all you need. This is the same instinct behind choosing tools by the job they do rather than the feature list: solve the real friction your team feels, in the simplest way that works, and move on.
For this client, a tiny change made their Google Site more functional, more usable, and more aligned with how the team already works.
Need help building something similar inside your Google Workspace, Notion, HubSpot, or ClickUp stack? Here is how I work with teams, and you can find more in Tools & systems.