Skip to content

Instantly share code, notes, and snippets.

@truccm2001
Forked from innat/ImageCenter.md
Created January 6, 2022 18:10
Show Gist options
  • Save truccm2001/1042d4842411ff7413359bf0b1860ec4 to your computer and use it in GitHub Desktop.
Save truccm2001/1042d4842411ff7413359bf0b1860ec4 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