Adding an img in markdown file

I was reading about adding am image in an .md file but am having trouble getting it to work. in c.md I put what should be the correct code but it’s not working. Could someone take a look and tell me what I might be doing wrong here? I’d appreciate it

Can you share your code?

![Alt Text](URL)

sorry y’all forgot to put in the link.
my project
I actually went in and changed everything too just to show everyone.

Everything under static/ gets copied to your site root upon generation, so change this:

![image](static/images/creek.jpg)

To this:

![image](/images/creek.jpg)

Edit: changed to path to the image from relative to absolute (added leading slash).

got it! needed to add the backslash in front of /images/creek.jpg