Saved Bookmarks
| 1. |
Write HTML code to display a text mobilewould having for front size 24, backgroundcolour aqua and blinking effect using CSS . |
|
Answer»
html { font-family: sans-serif; font-size: 24px; text-align: background-color: #00ffff; } .blinking{ animation:blinkingText 1.2s infinite; } @ 49%{ color: #000; } 60%{ color: 99%{ color:transparent; } 100%{ color: #000; } } I am a blinking text |
|