Advertisement
asimryu

video header

Jul 9th, 2019
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.18 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Video Header</title>
  6.     <style>
  7.         * { box-sizing: border-box; }
  8.         body {  margin: 0; }
  9.         header {
  10.             width: 100%;
  11.             height: 100vh;
  12.             overflow: hidden;
  13.             position: relative;
  14.         }
  15.         header video {
  16.             width: 100%;
  17.             height: 100%;
  18.             object-fit: cover;
  19.         }
  20.         header div {
  21.             position: absolute;
  22.             top: 0;
  23.             left: 0;
  24.             padding: 100px;
  25.         }
  26.         header div h1 {
  27.             font-size: 90px;
  28.             text-align: center;
  29.             color: rgba(0,0,0,0.5);
  30.         }
  31.     </style>
  32. </head>
  33. <body>
  34.     <header>
  35.         <video autoplay loop muted>
  36.             <source src="video.mp4">
  37.         </video>
  38.         <div>
  39.             <h1>Video Header</h1>
  40.             <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eveniet aut ullam vitae facilis commodi alias, porro asperiores dolore atque molestias autem minus vel minima, quae rerum quisquam accusamus illo optio.</p>
  41.         </div>
  42.     </header>
  43.     <div class="main">
  44.         <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat quia illum magni fugiat qui ducimus quam. Dolorem ullam maxime quis cum, laboriosam aspernatur dolore sapiente repellendus blanditiis atque eveniet! Consequuntur.</p>
  45.     </div>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement