Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.64 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.         <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7.         <title>Document</title>
  8.     </head>
  9.     <style>
  10.         * {
  11.             padding: 0;
  12.             margin: 0;
  13.         }
  14.  
  15.         .hero {
  16.             background-image: url('bg.jpg');
  17.             background-size: cover;
  18.             background-position: center;
  19.             width: 100vw;
  20.             height: 100vh;
  21.         }
  22.     </style>
  23.     <body>
  24.         <div class="hero"></div>
  25.     </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement