Advertisement
cutesy

blink text

Jul 22nd, 2021
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <head>
  2. <style>
  3. #blink{
  4. font-size: 200%;
  5. color: #000000;
  6. font-family: โ€œgeorgiaโ€;
  7. animation:blinkingText 1.2s infinite;
  8. line-spacing: 150%;
  9. margin: auto;
  10. }
  11. @keyframes blinkingText{
  12. 0%{ color: #000000; }
  13. 49%{ color: #000000; }
  14. 60%{ color: white; }
  15. 99%{ color:white; }
  16. 100%{ color: #000000; }
  17. }
  18. </style>
  19. </head>
  20. <div id="blink">TEXT GOES HERE</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement