Advertisement
EdmundC

skydef.2

Aug 20th, 2024 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Image on Black Background</title>
  7.     <style>
  8.         body {
  9.             background-color: black;
  10.             margin: 0;
  11.             display: flex;
  12.             justify-content: center;
  13.             align-items: center;
  14.             height: 100vh;
  15.         }
  16.         img {
  17.             max-width: 100%;
  18.             height: auto;
  19.         }
  20.     </style>
  21. </head>
  22. <body>
  23.     <img src="Users/edch2013/Desktop/plane2.png" alt="Image on Black Background">
  24. </body>
  25. </html>
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement