Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 16, 2021 08:58 am GMT

Insert center image in README.md on Github

Github is popular. As far as I see, most of developers know it quite well. They create projects, contribute code, write instructions in README.md and so on.

In README.md, one day you want to insert center image into it. You don't know somehow to do it using Markdown. Fortunatelly, Markdown on Github supports some HTML tags. Two of them are p and img.

The following is the way to insert center image into README.md:

<p align="center">   <img src="[YOUR_RAW_IMAGE_URL]" alt="[YOUR_ALT]"/></p>

It's cool, right?

Hope you enjoy this post.

Happy coding :)


Original Link: https://dev.to/1001binary/insert-center-image-in-readme-md-on-github-41ci

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To