I just wanted to add that if you use HTML to post an image, don't forget to use the alt="content description" element. That way, the visually impaired can hear the description of the image. a typical alt tag will look like:
<img src="image.png" alt="Image Description>
Kudos to the author for providing the html tags. I was considering doing the same. I also noticed height and width tags don't work for me. Styling such as background-color and so forth don't work either.
Thank you for pointing that out! I have completely left out the
alt
in the<img>
tag. And I guess the height and width didn't work for me, too. :/ I thought it might be the markdown styling, but it wasn't the case, too. I'll update the post regarding these. Thanks for sharing. :D