Online Html Editor

<!DOCTYPE html> <html lang="en"> <head> <style> .container { width: 90%; margin: 0 auto; text-align: center; } img{ max-width: 100%; max-height: 400px; height: auto; } </style> </head> <body> <div class="container"> <img src="/css/images/logo.png" > <p> This image has a maximum width and height set. Resize the browser window to see how the image scales down. </p> </div> </body> </html>