Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <style> img.centered-image { display: block; margin: 0 auto; width: 200px; border: 5px solid #eee; } </style> </head> <body> <p>This image is centered using display: block and margin: 0 auto.</p> <img src="/pix/samples/20s.jpg" class="centered-image" alt="A centered kitten"> </body> </html>