How to make an Image a Link Updated on August 16, 2021 by Brad Markle 1 Minutes, 12 Seconds to Read Any image can be a hyperlink to another webpage or another website alltogether. This will allow your website’s visitors to click on an image and go to a different webpage automatically. We will start using the same code as we did in the previous tutorial and build on it in this example: <img src=”Images/image.jpg” align=”middle” width=”250″ height=”320″ /> Now we will make it a link. The basic tag to make something an active hyperlink is <a href=”___”>object/text to be linked</a>. This looks very foreign to new website designers, since href is not a “word” that most people have seen before, but it is used whenever you want to create a link on your website. As with other tags, make sure that you close the <a href> tag with the </a> at the end or the hyperlink will never end. For images, you will simply put the hyperlink tag before and after your image code: <a href=”morepictures.html”><img src=”Images/image.jpg” align=”middle” width=”250″ height=”320″ /></a> The link above will make the image (image.jpg) a hyperlink to the page morepictures.html on your website. If you missed our previous article, please see the Changing the Size of an Image tutorial. For more information on this course please visit Inserting Images into a Website Share this Article Related Articles Intro to Migrating your WordPress Site Data Migrating your WordPress Database Migrating WordPress Files Configuring WordPress After a Migration Testing your WordPress website after Migration How to Move WordPress from a Subfolder to the Root Directory What to expect during a mass server migration Move Your WordPress Site to a New Server Moving Websites Built with Older Technology into WordPress How to Export Your WordPress Sites