# How to Add a Link to a Word in Any Document or App Adding a hyperlink to a single word — so clicking it takes you somewhere else — is one of the most useful formatting tricks in digital writing. Whether you're working in a word processor, email client, website editor, or note-taking app, the core idea is the same: you **anchor a URL to specific text** so the word becomes clickable rather than displaying the raw link. Here's how it works across the most common environments, plus the variables that determine which method applies to you. ## What "Adding a Link to a Word" Actually Means When you hyperlink a word, you're doing two things at once: - **Displaying readable anchor text** — the word or phrase the reader sees (e.g., "click here" or "Google") - **Attaching a destination URL** — the web address that opens when someone clicks that text The word stays visible as normal text (usually underlined and colored blue by default), but it carries a hidden URL payload. This is standard HTML behavior: ` your word`. Most apps abstract that code away into a simple dialog box. ## How to Add a Hyperlink in Microsoft Word Microsoft Word is the most common context for this question. The process is straightforward: 1. **Select the word** you want to link by clicking and dragging over it 2. Right-click and choose **"Link"** or **"Hyperlink"** from the context menu 3. In the dialog box, paste your URL into the **"Address"** field 4. Click **OK** Keyboard shortcut: with the word selected, press **Ctrl+K** (Windows) or **Cmd+K** (Mac) to open the Insert Hyperlink dialog directly. The same dialog lets you link to other locations within the same document, email addresses, or local files — not just external URLs. ## How to Add a Link to a Word in Google Docs Google Docs uses a nearly identical flow: 1. Select your word 2. Press **Ctrl+K** (Windows) or **Cmd+K** (Mac), or go to **Insert → Link** 3. Paste or type the URL in the box that appears 4. Press **Enter** or click **Apply** Google Docs also suggests links automatically as you type — if you type a URL immediately after selecting text, it may prompt you to convert it to a hyperlink. ## Adding Links in Other Common Environments 🔗 | Environment | How to Insert a Link | |---|---| | **Microsoft Word** | Select word → Ctrl+K / Cmd+K → paste URL | | **Google Docs** | Select word → Ctrl+K / Cmd+K → paste URL | | **Outlook (email)** | Select word → Insert tab → Link | | **Gmail** | Select word → chain-link icon in toolbar | | **WordPress / block editors** | Select word → link icon in toolbar → paste URL | | **Notion** | Select word → Ctrl+K / Cmd+K → paste URL | | **Markdown editors** | Type `[word](https://url.com)` directly | | **Apple Pages** | Select word → Insert menu → Hyperlink | The **Ctrl+K / Cmd+K** shortcut has become a near-universal standard across modern writing tools, so it's worth trying in any unfamiliar app before hunting through menus. ## Markdown: A Different Approach Entirely If you're writing in a Markdown-based environment — like a developer blog, GitHub README, or tools like Obsidian — there's no GUI dialog. You write the link syntax manually: ``` [word](https://example.com) ``` The word in square brackets becomes the anchor text. The URL in parentheses is the destination. No mouse required, and no formatting toolbar needed. This is the preferred method in plain-text and code-adjacent workflows. ## Variables That Change the Experience The method that works for you depends on several factors: **Platform and app version** — Older versions of Microsoft Word or Office 365 vs. the desktop app can have slightly different menu layouts. Web-based versions of apps (Word Online, Google Docs in a browser) behave differently from installed desktop software. **Device type** — On a **mobile device** (iOS or Android), most word processing apps require you to tap-and-hold to select text, then look for a "Link" or "Insert" option in the popup toolbar. The experience is more limited than desktop. **Document format** — A **.docx** file supports hyperlinks natively. A **plain .txt file** does not — the link simply won't be interactive. PDFs have their own hyperlink layer that requires dedicated PDF editing tools to add or modify. **Where the document will be used** — A hyperlink in a Word document printed to paper is invisible and useless. The same link in a document shared digitally or exported to a web page works as intended. If your document is destined for print, you may need to display the URL as visible text instead. **Rich text vs. plain text fields** — Not every text box on the internet accepts formatted links. Comment fields, some CMS inputs, and legacy forms may strip formatting entirely, leaving only the raw URL or nothing. ## Why the Link Might Not Work After You Add It ⚠️ A few common reasons a hyperlink fails even after correct setup: - **The URL is broken or typed incorrectly** — always paste rather than type URLs manually - **The document was saved in a format that strips links** — exporting to plain text or certain legacy formats removes hyperlink data - **Permissions settings in Word or Google Docs** — some organizational document policies restrict external links - **The link points to a page that has moved or gone offline** — the hyperlink itself is fine, but the destination no longer exists Clicking a hyperlink in Word requires **Ctrl+Click** by default (not just a single click) — a setting some users don't realize exists. This can be changed in Word's Options under **Advanced → Use Ctrl+Click to follow hyperlink**. ## The Factor That's Still Missing Knowing the mechanics is the straightforward part. What varies from person to person is the **destination environment**: whether your linked document will be read on screen, printed, shared as a PDF, published to the web, or embedded in an email changes what a hyperlink can actually do — and whether it's the right choice at all for your specific situation.