I'm using Jupyter notebook, and I would like to show an image side-by-side using Markdown
block. For an image,
<img src="image1.png" width="400">
shows me an image, but I'm wondering if there is any way to put pictures side-by-side using Markdown
block.
Try
I've tried the following :
<style type="imgContainer">
float:left;
</style>
<div class="image12">
<div class="imageContainer">
<img src="../EyeTracking_data/Figures/Freq.png" width="200" />
</div>
<div class="imageContainer">
<img src="../EyeTracking_data/Figures/Freq.png" width="200"/>
</div>
</div>
but this only shows the plots with one on top and the other on the bottom.
Is there any way to do this?