Advertisement
Guest User

MP3 CSS

a guest
Jun 9th, 2020
1,646
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <!-- MP3 -->
  2. <!DOCTYPE html>
  3. <html>
  4. <body>
  5. <div class="boxed">
  6. <img src="album cover here" width=100px height=100px;>
  7. <marquee><span class="blinking">Name of song here</span></marquee>
  8.  
  9. </div>
  10. <style>
  11. .boxed {
  12. background-color:#000000;
  13. border: 2px solid #000000;
  14. color:#000000;
  15. font-family:Verdana;
  16. font-size:12px;
  17. font-weight:bold;
  18. width:150px;
  19. height:120px;
  20. }
  21. .blinking{
  22. animation:blinkingText 0.8s infinite;
  23. }
  24. @keyframes blinkingText{
  25. 0%{ color: blinking colors here; }
  26. 49%{ color: blinking colors here; }
  27. 50%{ color: blinking colors here; }
  28. 99%{ color: blinking colors here; }
  29. 100%{ color: blinking colors here; }
  30. }
  31. </style>
  32. </body>
  33. <audio autoplay>
  34. <source src="MP3 URL HERE" type="audio/mpeg">
  35. </audio>
  36. </html><BR>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement