<img src="myimage.jpg"> is the basic format for an image.
To make that image a link, you could use an <a> tag around the image
<a href="mypage.htm"><img src="myimage.jpg"></a>
to make the webpage redirect to "mypage.htm" after "myimage.jpg" is clicked
or use
<img src="myimage.jpg" onClick="alert('Hello World!');">
for the webpage to execute a line of JavaScript when the image is clicked. (Note: The user will not see the 'link' cursor when they mouse over the image in the second example)
To make an image into a link you would enclose the tags with link tags (). For instance the following would make a link to wikianswers of the img named "pic.gif".http://wiki.answers.com">
To make an image clickable in HTML, you can wrap the <img> tag with an anchor <a> tag. For example: <a href="https://www.example.com"> <img src="image.jpg" alt="Description of image"> </a> This code will make the image act as a link, directing users to "https://www.example.com" when they click on it.
There are many ways. Try getting the link to the picture (web site link) put [*img] before it, then put [*/img] after it, but take out the stars in it.
You can set image as a link by placing HREF into the image tag. It could be done as <img href="#"></img>.
You don't use Hyperlink, you use BBCode! For example, if you want to insert a link, just do this: [url=http://www.midnightstardustanime.wordpress.com]This is Midnight Stardust's Blog![/url] If you want to insert an IMAGE with a link, do this: [url=(the link of your website where your image is)][img](the link of your image)[/img][/url] If you just want an image, do this: [img](your link of your image)[/img] NOW DO YOU UNDERSTAND?
simply use the <img> tag... include the src attribute and link it to the images URL like so: <img src="http://www.whateverTheUrlIs.com"> you should also include the <alt> attribute to make your code perfect: <img src="........" alt=".....">
Tags are the basic rules in HTML like if you wanted to add a dotted list you can use the ul tag and you can add images with the img tag and you can make the image a link by nesting the img inside a link tag but i believe the most useful tag is the div tag
<img src="link for picture">
The img tag.The img tag.The img tag.The img tag.The img tag.The img tag.The img tag.The img tag.The img tag.The img tag.The img tag.
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>
Use html: <img src="a"> Change a to your image dirrect link You can get your image dirrect link by upload it on tinypic.com or photobucket.com Example: <img src="http://i51.tinypic.com/m795cp.jpg> Try it! ^^ Hope you understand
You should use HTML tag "img" for that. look at the related link