Advertisement
Guest User

Untitled

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