answersLogoWhite

0

You take your IMG tag

and put it inside a link.

For proper formatting of the picture, you would set a "border = 0" property. Otherwise it has a blue border around it. Example: <a href="http://www.test.com"><img src="img.jpg" border="0"></a>

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Is A Thumbnail Picture Clickable?

It may be, depending on the software being used to view the thumbnail. A thumbnail in and of itself is not clickable, as it is merely a collection of bytes that form an image on the screen. However, the picture of the thumbnail may be clickable depending on the software used to view the thumbnail.


How do you make and image automatically switch to a webpage?

You anchor it to an URL. You would like to have the image send a visitor to another webpage. Add this code, direcly above the image code &lt;a href="another webpage address"&gt; and this code direcly after the image code &lt;/a&gt; This will made the image a clickable link to "another webpage address".


How do you make a map clickable For example click Spain and you get a box with a story?

You can create an interactive, clickable map using a flash map software, such iMapbuilder (http://www.imapbuilder.com). Select the Spain map or world map template, and then link it to a webpage or a popup tooltip box with the image /text you want to add.


How do you make a word clickable on MySpace?

i Love Zac Efron&lt;333


How do you embed a clickable HTML link in a picture or video clip?

First, you need to add the link element: &lt;a href="example.com" target="_blank"&gt;Link&lt;/a&gt; Then you need to add the image file: &lt;a href="example.com" target="_blank"&gt;&lt;img src"example.jpeg" alt="image"&gt;Image&lt;/a&gt; That about sums it up. Make sure you change the links and file names!


How do you embed a URL in to a picture?

To embed a URL in a picture, you can use an image editing tool or HTML code. In HTML, wrap the image tag with an anchor tag like this: &lt;a href=&quot;URL&quot;&gt;&lt;img src=&quot;image.jpg&quot; alt=&quot;Description&quot;&gt;&lt;/a&gt;. This will make the image clickable, directing users to the specified URL when they click on it. Alternatively, some image editing software allows you to add hyperlinks directly to the image, but this is less common for web use.


The image or icon that can be clicked to display a webpage?

The correct way to display an image on a webpage through HTML coding is


How can I embed a link in an image?

To embed a link in an image, you can use HTML code. Simply wrap the image tag img with an anchor tag a and specify the URL you want to link to in the href attribute. Here's an example: a href&quot;https://www.example.com&quot;img src&quot;image.jpg&quot; alt&quot;Description of the image&quot;/a This code will create a clickable image that redirects users to the specified URL when clicked.


How do you make Click-able words on websites?

In your HTML coding, you would include something like: clickable text


How do you make a Photo or text clickable?

Assuming html, wrap it in an anchor tag (ex. &lt;a href="http://www.yoursite.com/yourpage&gt;&lt;img src="image.jpg /&gt;&lt;/a&gt;


What is the clickable text on a webpage that is usually displayed in a different color?

A hyperlink, or link for short, is that clickable text you see on a webpage that is usually a different color than the rest of the text.


What is the attribute that is used to create a clickable link on the page?

The method is called a hyperlink. You create the link with an anchor tag. Here is an example: &lt;a href="page.html" title="My Page"&gt;Clickable Link&lt;/a&gt;.