How to Make a Logo into a Link
Most companies include a unique logo image on most, if not all, of the pages on its website. One common practice of website design is to place a hyperlink on the logo image that leads visitors back to the home page of the company website. Using HTML, it's a simple matter to hyperlink your logo and direct visitors who click on it to any page you want.
Instructions
-
Linking an Image
-
1
Open your web page in your HTML editor. Click on the logo image you want to make into a link. The image will become highlighted.
-
2
Change the view of your HTML editor to "Code View". This will give you access to the HTML code that defines the formatting of your page. The source code for the image you clicked will be highlighted. It should look something like this:
<img src="http://www.YourSite.com/images/YourImage.gif">
-
-
3
Place an anchor tag around the image source code. The HTML anchor tag is the piece of code that makes text and image elements into a link. Your linked image should look like this:
<a href="page.htm"><img src="http://www.YourSite.com/images/YourImage.gif"></a>
Replace "page.htm" with the name of the page you want to link to.
-
4
Save your page and upload it to your server. Navigate to the page you just modified and test the link on your logo to ensure it works.
-
1