Advertisement
talas

blinking text

May 3rd, 2021
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <head>
  2. <style>
  3. p3{
  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. <p3>TEXT GOES HERE</p3>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement