I have the website of tattoo (www.tattoo-gallery-studio.com) and I want that if someone click on the image or bring mouse on image than the image size will increase by using the HTML code only.
HTML does not support anything like that. You should be looking at Javascript (including jQuery for the sake of simplicity).
Are you sure because somebody told me about this. He told me that you can use html to zoom the size of image on mouse click. can we do such think in DHTML.
You can use Magic Zoom to zoom an image: http://www.magictoolbox.com/magiczoom/examples/ or Magic Thumb to enlarge an image: http://www.magictoolbox.com/magicthumb/examples/ They both use JavaScript and that is what you need to achieve the effect you want,
I got the solution for this. in image tag we need to use Onclick attribute which help us to change the size of image. As <img src="image.jpg" onclick="this.width=500; this.height=500" ondblclick="this.width=147;this.height=173;" />