- 4 Ways to Add a Link to a Picture
- Using HTML
- Adding Links to Images in Web Editors
- Adding Hyperlinks to Images in Word
- Using Social Media & Image Hosting Sites
- Expert Q&A
- How to add link in image in HTML [Image Links]
- What is an Anchor Tag in HTML?
- Add Link in Image [by Using Anchor Tags]
- How to open Link in New Tab, Current Tab, Parent Frame,New Window and in a Particular Frame?
- Frequently Asked Relatable Questions
- What is the correct HTML for creating a hyperlink
- HTML hyperlink image
- Clickable text or images that take you to different sites
- How to hyperlink a picture
- How to make an embedded link
- How to make image clickable in HTML
- How to insert hyperlink in JPEG image
- How to turn image into link
- Add links using HTML link Tags
- HTML Tag
- Browser Support
- Attributes
4 Ways to Add a Link to a Picture
This article was co-authored by wikiHow staff writer, Darlene Antonelli, MA. Darlene Antonelli is a Technology Writer and Editor for wikiHow. Darlene has experience teaching college courses, writing technology-related articles, and working hands-on in the technology field. She earned an MA in Writing from Rowan University in 2012 and wrote her thesis on online communities and the personalities curated in such communities.
This article has been viewed 380,953 times.
Do you want to link to a picture in code or do you want someone to be able to click a picture to see a website? With a single line of HTML code or some settings, you can add a clickable image nearly anywhere! Since an image is often larger than text, it offers a larger clickable area (increasing the chances that someone will follow your link!). This wikiHow article teaches you how to add a link to a picture with methods that you can use whether you’re on a computer, phone, or tablet.
- To make a picture a clickable link, use the HTML code: .
- Web editors like WordPress and Wix as well as email programs and image platforms like Gmail and Canva have built-in functionality to add a link when you select your image.
- In Word, right-click the picture and select «Link.» Finally, add the URL and click «Ok.»
Using HTML
Enter the following code to make your image clickable. Select and copy the HTML code below, and then paste it into your open index.html file.
a href="DESTINATION URL">img src="full-path-to-image.jpg">a>
- In this case, the «full-path-to-image» will redirect to your «DESTIONATION URL».
- If you have access to the HTML of a page, you can use this anywhere!
Adding Links to Images in Web Editors
- If you don’t immediately see that link icon, click to select your image and it should be available near the text editing tools.
Adding Hyperlinks to Images in Word
- If you share this Word document and have this picture linked to a file on your computer, the other users may not be able to see the other file unless it’s shared too.
- Since this article is about linking websites to a picture, you’ll want to leave it on «Existing File or Web Page.»
- Click OK to add the link to your image.
- When you share that Word document, anyone who clicks on that picture will be redirected to that link!
- You can also add videos to Google Docs and Slides as well as overlay pictures in Google Docs!
Using Social Media & Image Hosting Sites
- This method works for uploading pictures to almost all online platforms including Flickr, Imgur, Facebook, Instagram, Google Drive, and Apple iCloud.
- Only use this method if you want to insert a link that redirects people to your picture on these sites. It’s not a method for adding a link to a picture.
Expert Q&A
Martin Aranovitch is a WordPress Trainer and Educator and a WordPress Writer for WPMU DEV. With over 18 years of digital marketing and website maintenance experience, Martin specializes in providing comprehensive instruction for people looking to use WordPress effectively. He holds a Bachelor’s degree in Science and Technology Studies from The University of New South Wales. Martin is also a digital publisher and the author of multiple WordPress guides and training manuals for people of all learning levels.
Create or edit a new/existing post or page. Then, select and highlight the text that you want to hyperlink. Click on the linking tool in the inline editor menu, select or type your destination URL (this can be an internal or external link), and choose whether or not to open the link in a new tab. Then, just click on the «Apply» button or hit your «Enter» key.
Thanks! We’re glad this was helpful.
Thank you for your feedback.
As a small thank you, we’d like to offer you a $30 gift card (valid at GoNift.com). Use it to try out great new products and services nationwide without paying full price—wine, food delivery, clothing and more. Enjoy! Claim Your Gift If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow
How to add link in image in HTML [Image Links]
If you are wondering about How to add link in image in HTML, then we have solutions for that in this Tutorial.
In simple way, you just need to Wrap your Image inside anchor tags.
Where anchor tags will make that image Clickable and you can Assign any web Link to that Image Easily.
What is an Anchor Tag in HTML?
Anchor tags are used for adding Hyper Links in HTML Web Pages.
Whatever you write or Define Between Anchor tag’s Starting and Closing tags will become a Clickable Link.
Where by using Anchor tag’s href you can assign a Link where you want link that Text/HTML Element.
Add Link in Image [by Using Anchor Tags]
To add a link in image using Anchor Tags, you just need to Declare/Write your Image tag inside HTML Anchor Tag’s Starting and Closing tags and you areDONE
In this Example we have Linked our Image () to an URL (https://programminghead.com) using HTML Anchor Tags.
Now your Image is linked and whenever someone click this Image, they will be redirected to the Given Link.
How to open Link in New Tab, Current Tab, Parent Frame,New Window and in a Particular Frame?
In order to Open Links in New Tab, Current Tab, Parent Frame, New Window and in a Particular Frame, we have Anchor Tag’s target Attribute.
We just need to specify how we want to open your Link.
For example, If you want to open your Link in a New Tab: use target=»_blank«.
If you want to Open your Link in the Current Tab, then use target=»_self«.
If you want to Open your Link in the Parent Tab, then use target=»_parent«.
If you want to Open your Link in a New Browser Window, then use onClick=»window.open(‘https://programminghead.com’, ‘_blank‘, ‘width=800,height=800′)«.
Here we need to fire a onClick JavaScript Event. Using JavaScript we can Open new Browser Window on a Click.
If you want to Open your Link in a Particular Frame, then use target=»frameName« (replace frameName with your HTML Frame Name).
Frequently Asked Relatable Questions
What is the correct HTML for creating a hyperlink
In HTML, the correct way for creating hyperlinks is to use Anchor Tags and by using Anchor Tag’s href Attribute we can assign a Link.
By Writing this Code, We are Creating a Hyperlink with «Click Me» text.
When we click the text, this will redirect us to Linked URL.
HTML hyperlink image
To make HTML Image a Hyperlink, we have to Wrap Image tag within HTML Anchor tag’s Starting and Closing tags.
This will make our Image Element a Hyperlink in HTML Web Page.
Clickable text or images that take you to different sites
To make HTML Elements like: HTML text or HTML Images Clickable, we need to Wrap them inside HTML Anchor tag’s Starting and Closing tags.
This will make both the TEXT and Image a Clickable text or Image.
How to hyperlink a picture
To create a hyperlink by using Image, we need to use HTML Anchor tags.
HTML Anchor tags can turn HTML Elements like Images into Hyperlinks.
How to make an embedded link
To embed links in HTML Web Page, we need to use HTML Anchor Tags. Where using HTML Anchor Tag’s href attribute, we can Embed any LINK inside HTML Webpage.
How to make image clickable in HTML
Anchor Tags are perfect Option to make HTML Elements like: Image Clickable in HTML.
You just need to put your Image Tag between HTML Anchor tag’s Starting and Closing tags and i will become a Clickable Image.
How to insert hyperlink in JPEG image
To add links to any image type like: JPEG, PNG, GIF or SVG, you can use HTML Anchor Tags.
Because by using HTML Anchor tags you can add links to any type of Image.
Just put your Image between Anchor tag’s Starting and Closing tags and your Image will become a Clickable Image.
How to turn image into link
To turn Image into link (means you can add a link to HTML Image and your image will become clickable), you need to use HTML Anchor Tags.
HTML Anchor tags are used for adding Hyperlinks inside HTML.
After Wrapping your Image tag between HTML Anchor tag’s Starting and Closing tags and your Image will turn into a link.
Add links using HTML link Tags
Don’t get confused between HTML Anchor tag and HTML Link Tag .
Where HTML Anchor tags are used for creating Hyperlinks
and
HTML Link tags to define relationship between current Document and External Source.
In simple Language:
HTML Anchor Tags are used for Inserting Links in HTML
and
HTML Link Tags are used to link External Resources like External CSS.
HTML
Tag
The tag is used to embed an image in an HTML page.
Images are not technically inserted into a web page; images are linked to web pages. The tag creates a holding space for the referenced image.
The tag has two required attributes:
- src — Specifies the path to the image
- alt — Specifies an alternate text for the image, if the image for some reason cannot be displayed
Note: Also, always specify the width and height of an image. If width and height are not specified, the page might flicker while the image loads.
Tip: To link an image to another document, simply nest the tag inside an tag (see example below).
Browser Support
Attributes
Attribute | Value | Description |
---|---|---|
alt | text | Specifies an alternate text for an image |
crossorigin | anonymous use-credentials | Allow images from third-party sites that allow cross-origin access to be used with canvas |
height | pixels | Specifies the height of an image |
ismap | ismap | Specifies an image as a server-side image map |
loading | eager lazy | Specifies whether a browser should load an image immediately or to defer loading of images until some conditions are met |
longdesc | URL | Specifies a URL to a detailed description of an image |
referrerpolicy | no-referrer no-referrer-when-downgrade origin origin-when-cross-origin unsafe-url | Specifies which referrer information to use when fetching an image |
sizes | sizes | Specifies image sizes for different page layouts |
src | URL | Specifies the path to the image |
srcset | URL-list | Specifies a list of image files to use in different situations |
usemap | #mapname | Specifies an image as a client-side image map |
width | pixels | Specifies the width of an image |