Making an image clickable (HTML)
Wrap the image tag inside an anchor tag, the same way you'd wrap a word of text:
<a href="https://example.com"> <img src="photo.jpg" alt="Description of where this leads"> </a>
Clicking anywhere on the image now follows the link. You can build the anchor part of this with the HTML link generator — just paste your <img> tag in as the "link text" instead of plain words.
Finding an image's own URL
If what you actually need is the web address of an image itself — to paste elsewhere, or to use as a destination — right-click the image in your browser and choose Copy image address (wording varies slightly by browser). This only works for images already hosted somewhere online; this site generates link markup from a URL you provide, it doesn't host, upload, or store images itself.
Making a video clickable
The HTML is the same pattern as an image — wrap whatever represents the video (usually a thumbnail image, or the <video> element itself) inside an anchor tag:
<a href="https://example.com/watch"> <img src="video-thumbnail.jpg" alt="Watch the product demo"> </a>
To send someone to a specific moment instead of the beginning, append a timestamp to the video's own URL rather than changing anything about the link markup. YouTube accepts either ?t=90 (in seconds) or &t=1m30s added to the end of the video link; most other platforms support a similar ?t= or #t= parameter — check the "Share" option on the specific video for the exact format.
In Word & Google Docs
Select the image first, then use the same Insert Link command you'd use on text — Ctrl+K, or Insert > Link. See the full Word hyperlink guide for troubleshooting if the link doesn't take.
Alt text on a linked image
When an image is the only content inside a link, its alt attribute becomes the link's entire accessible name — a screen reader announces the alt text, not "image, link." Write it to describe the destination, not just the picture: alt="Download the pricing PDF" is more useful than alt="PDF icon". This is the same anchor-text principle covered in our accessibility guide, applied to images instead of words.
Build the link part now.
Generate correct href, target, and rel attributes to wrap around your image — free and private.