Image Maps Add Comment Use the map tag to define an image-map. An image-map is an image with clickable areas. The name attribute of the map tag is associated...
Image Floating Add Comment Use the CSS float property to let the image float to the right or to the left of a text: Example <p><img src="smiley.gif" alt="Smiley...
Using an Image as a Link Add Comment To use an image as a link, simply nest the img tag inside the a tag: Example <a href="default.asp"> <img src="smiley.gif" alt="HTML...
Animated Images Add Comment The GIF standard allows animated images: Example <img src="programming.gif" alt="Computer Man" style="width:48px;height:48px;"> Try...
Images on Another Server Add Comment Some web sites store their images on image servers. Actually, you can access images from any web address in the world: Example <img src="http://www.w3schools.com/images/w3schools_green.jpg" alt="W3Schools.com"> Try...