Images in a table with GitHub markdown
The images in the table have all the same dimension.
The "problem" is that to every image a border is added. The border is white on even rows, and it is light gray on odd rows.
The images in the even rows seem to not have a border because the background and the border are both white.
(thanks to Shawna of the github support team)
You can use these html tags for this,
<table>
<tr>
<td> <img src="img1.png" alt="1" width = 360px height = 640px ></td>
<td><img src="img2.png" alt="2" width = 360px height = 640px></td>
</tr>
<tr>
<td><img src="./Scshot/cab_arrived.png" alt="3" width = 360px height = 640px></td>
<td><img src="./Scshot/trip_end.png" align="right" alt="4" width = 360px height = 640px>
</td>
</tr>
</table>
For More Information ,you can see here Link