Advertisement
iteach

Html video background

Dec 25th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Meet Utkarsh</title>
  5.  
  6. <style type="text/css">
  7.  
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. body {
  13. font-family: Calibri, sans-serif;
  14. }
  15. .background-wrap {
  16. position: fixed;
  17. z-index: -1000;
  18. width: 100%;
  19. height: 100%;
  20. overflow: hidden;
  21. top: 0;
  22. left: 0;
  23. }
  24.  
  25. #video-bg-elem {
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. min-height: 100%;
  30. min-width: 100%;
  31. }
  32. .content {
  33. position: absolute;
  34. width: 100%;
  35. min-height: 100%;
  36. z-index: 1000;
  37. background-color: rgba(0,0,0,0.7);
  38. }
  39. .content h1 {
  40. text-align: center;
  41. font-size: 65px;
  42. text-transform: uppercase;
  43. font-weight: 300;
  44. color: #fff;
  45. padding-top: 15%;
  46. margin-bottom: 10px;
  47. }
  48. .content p {
  49. text-align: center;
  50. font-size: 20px;
  51. letter-spacing: 3px;
  52. color: #aaa;
  53. }
  54. #logotop {
  55. align: 0px;
  56. padding: 0px;
  57. }
  58.  
  59. </style>
  60.  
  61.  
  62. </head>
  63. <body>
  64.  
  65.  
  66.  
  67.  
  68. <div class="background-wrap">
  69. <video id="video-bg-elem" preload="auto" autoplay="true" loop="loop" muted="muted">
  70. <source src="vdeo.mp4" type="video/mp4">
  71. <source src="vdeo.webm" type="video/webm">
  72. Sorry That The Amazing video Is Not Supported Please Contact us and tell us which operating system or which browser you use Sorry!
  73. </video>
  74. </div>
  75.  
  76.  
  77. <div class="content">
  78. <h1>Meet Utkarsh</h1>
  79. <p>The Web Developer.</p>
  80. </div>
  81.  
  82.  
  83.  
  84. </body>
  85. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement