Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Image on Black Background</title>
- <style>
- body {
- background-color: black;
- margin: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- }
- img {
- max-width: 100%;
- height: auto;
- }
- </style>
- </head>
- <body>
- <img src="Users/edch2013/Desktop/plane2.png" alt="Image on Black Background">
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement