Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1.  
  2. <!doctype html>
  3. <html lang="en">
  4.  
  5. <head>
  6. <style>
  7. @import url('https://fonts.googleapis.com/css?family=Roboto');
  8.  
  9. h1 {
  10. color: blue;
  11. animation: bobniggerjones .12s infinite;
  12. }
  13.  
  14. @keyframes bobniggerjones
  15. {
  16. 0%
  17. {
  18. color: red;
  19. transform: scale(1);
  20. }
  21. 20%
  22. {
  23. color: orange;
  24. }
  25. 40%
  26. {
  27. color: yellow;
  28. }
  29. 60%
  30. {
  31. transform: scale(6);
  32. color: green;
  33. }
  34. 80%
  35. {
  36. color: blue;
  37. }
  38. 100%
  39. {
  40. transform: scale(1);
  41. color: red;
  42.  
  43. }
  44. }
  45.  
  46. body {
  47.  
  48. font-family: 'Roboto', sans-serif;
  49. margin: 0 auto;
  50. width: 800px;
  51. background: gray;
  52. background-image:url(photos/weed.png);
  53. background-size: 100px;
  54. transition-duration: 1.2s;
  55. }
  56.  
  57. body:hover
  58. {
  59. transform: scale(3);
  60. color: black;
  61. }
  62.  
  63. .middle
  64. {
  65. border: 1px solid red;
  66. background-color: rgba(255, 255, 255, .5);
  67. }
  68. </style>
  69. <title>Name of this shit</title>
  70. </head>
  71. <body>
  72. <audio src="guh/rip.mp3" volume=".1" autoplay>
  73. Your browser does not support the <code>ear rape</code>.
  74. </audio>
  75. <div class="middle">
  76. <h1>Shit goes here</h1>
  77.  
  78. <p>room for more shit</p>
  79.  
  80. <p>as;ldkjflasjdlaksdjf</p>
  81.  
  82. <p>a;lskdjf;laskjdf;laskjdflllllllllll;</p>
  83.  
  84. lorem1
  85. </div>
  86. </body>
  87. >
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement