I am trying to have some text right next to an image in a Google Colab Markdown cell using HTML, but haven't been able to do so.
I took some reference from here but it didn't work for me. The code is this,
<div style="display:inline-block;vertical-align:top;">
<img src="https://loremflickr.com/320/240" alt="img"/>
</div>
<div style="display:inline-block;">
<p>
Here goes the text content.
</p>
</div>
Output -
How can I have it so the text is right beside the image, and I can even change the font size?
You can try your answers by entering them in a Mardown Cell of this notebook.
