I want to add the image in the Jupyter notebook and I want to have particular height and width. When I try to add the image using

the code is adding the complete image but as per the image dimension and I don't have control over it. I try to use  but then the image does not appear.
Does anybody know of a way to add an image with pre-specified dimensions?
If you're attaching your images by inserting them into the markdown like this:

Do this instead:
<div>
<img src="attachment:Screenshot.png" width="500"/>
</div>
Unfortunately, it doesn't work without the surrounding divs:
// this does not work
<img src="attachment:Screenshot.png" width="500"/>
PS I'm using jupyter_core-4.4.0
& jupyter notebook.