Guest User

Untitled

a guest
Feb 16th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <title>Test</title>
  5. <link href="sky.css" rel="stylesheet" type="text/css">
  6. <script type="text/javascript" src="sky.js"></script>
  7.  
  8. </head>
  9.  
  10.  
  11. <body>
  12. <div id="Welcome">
  13. <h1> Hello </h1>
  14. </div>
  15.  
  16. <div id="Next">
  17. <a href="next.html"><h2> Next Page </h2></a>
  18. </div>
  19.  
  20. <video autoplay muted loop id="VidBackground">
  21. <source src="video/home.mp4">
  22. </video>
  23.  
  24.  
  25. </body>
  26. </html>
  27.  
  28. h1, h3, a {
  29. color: #ffffff;
  30. line-height: 2;
  31. }
  32.  
  33. #welcome {
  34. position: absolute;
  35. bottom: 15%;
  36. right: 20%;
  37. z-index: 2;
  38. }
  39.  
  40. #next {
  41. position: absolute;
  42. bottom: 10%;
  43. right: 20%;
  44. z-index: 2;
  45. }
  46.  
  47. #VidBackground {
  48. position: fixed;
  49. right: 0;
  50. bottom: 0;
  51. object-fit: cover;
  52. z-index: -1;
  53. }
Add Comment
Please, Sign In to add comment