I drag and drop an image in Jupyter Notebook. By default it gives me a code:

Can I do something to above to align it right "WITHOUT" <img ..>
?
I drag and drop an image in Jupyter Notebook. By default it gives me a code:

Can I do something to above to align it right "WITHOUT" <img ..>
?
You can embed an image in markdown as follows. See other suggestions made here Markdown and image alignment
<img style="float: right;" src="myimage.png">
Or,



I will share here one of the modifications I made for my jupyter notebooks markdown content. I hope this will be helpful.
<div style="width:image width px;
font-size:80%;
text-align:center;
float: right; padding-left-right-top-bottom:0.5em;
border-style: solid; border-color: rgba(211, 211, 211, 0.1);
background-color: rgba(0, 250, 250, 0.1);">
<img src="./Resources/Markdown/898px-Row_and_column_major_order.svg.png"
alt="alternate text"
width=200
style="padding-bottom:0.5em;"/>
<div style="padding: 3px;
width: 200px;
word-wrap: break-word;
text-align:justify;">
Illustration of difference between row- and column-major ordering. <br>
<a href="https://en.wikipedia.org/wiki/File:Row_and_column_major_order.svg"
style="float: right;">
Image Source
</a>
</div>
</div>
Note: This is possibly a duplicate of Markdown and image alignment.