In a Jekyll post I want to include an image I have in the address images/posters/surfaces.png
.
Furthermore, I want it to have a 750px width.
I tried <img src={images/posters/surfaces.png} alt="Poster" style="width: 750px;"/>
and <img src="images/posters/surfaces.png" alt="Poster" style="width: 750px;"/>
but it did not work.
What syntax should I use instead?