You can add images to Markdown using the [alt text](image_url)
syntax. Let’s see how it works.
Here’s the syntax for adding images in Markdown. The title is optional:

This results in the following HTML:
<img title="a title" alt="Alt text" src="/images/boo.svg">
With the markdown syntax for links, here’s how you would have a linked image:
[](https://digitalocean.com)
The <img>
element is a useful feature of HTML.
For a more comprehensive review of the HTML5 markup language, explore our series, How To Build a Website in HTML.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.
Sign up
If, by any chance, anyone wants to embed (a.k.a. in the same file) images inside a markdown file, they can do it by converting the image to base64 URI (this can help : https://base64.guru/converter/encode/image) and paste the result inside the link section of the image.
You can check this : https://drive.google.com/file/d/1TB5cRgTHpNN5PtyrpV50yfAGQQym9O89/view?usp=sharing
as reference.