Skip to content

Instantly share code, notes, and snippets.

@tkamag
Forked from innat/ImageCenter.md
Created May 6, 2023 06:30
Show Gist options
  • Select an option

  • Save tkamag/58c0a8245020e5f3b25b0b7517f2aa40 to your computer and use it in GitHub Desktop.

Select an option

Save tkamag/58c0a8245020e5f3b25b0b7517f2aa40 to your computer and use it in GitHub Desktop.
Center Images in GitHub README.md

For left alignment

 <img align="left" width="600" height="200" src="https://www.python.org/python-.png">

For right alignment

<img align="right" width="600" height="200" src="https://www.python.org/python-.png">

And for center alignment

<p align="center">
  <img width="600" height="200" src="https://www.python.org/python-.png">
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment