I am working with images in HTML. I have two pictures and I am trying to put those adjacent without any bank space in between. I use the following code to do so but I am getting some white space in between of those two picture. How to deal with this problem.
<img src="Pic/my_pic.gif" alt="pic of mine" width="380" height="120" border = "0" >
<img src="Pic/House_Front.gif" alt="Front view of my house" width="220" height="120" border = "0">
Problem with image location
Moderator: General Moderators
in html try putitng them like that
notice that i didn't put any white spaces between the images in my source code
Code: Select all
<img src="Pic/my_pic.gif" alt="pic of mine" width="380" height="120" border = "0" ><img src="Pic/House_Front.gif" alt="Front view of my house" width="220" height="120" border = "0">