One way to center an image horizontally
.img_container {
    text-align: center;
}
Another way of doing this:
img {
    display: block;
    margin: 0 auto;
}
https://youtu.be/jiA7BRTL1A0?t=201
by Valeri Tandilashvili
4 years ago
CSS
Learn CSS
1
Pro tip: use ```triple backticks around text``` to write in code fences