Can someone tell me the HTML code for inserting two pics near each other with gap in between them
Like this:-
Picture 1 picture 2
Answers
Answered by
0
Answer:
please use the margin attribute in IMG tag
Answered by
1
Answer:
Make sure you don't have any spaces in your html markup. So change:
<img src="" alt="" /> <img src="" alt="" />
to
<img src="" alt="" /><img src="" alt="" />
Sometimes spaces can hide at the end of new lines too, so be sure to check the end of lines if your html looks like
<img src="" alt="" />
<img src="" alt="" />
Explanation:
Similar questions