Making words blink

M

Mark Lopa

Is there a way to make a word blink? I think I remember it
can be done in Netscape, but not IE. Is that still true?
Can someone give me the code to make the word HELLO blink?

Also, is there a way to make it blink only a certain
amount of times?

Thanks,
Mark
 
M

MD WebsUnlimited.com

Hi,

I don't recommend that you use blinking text. First it is annoying second it
decreases accessibility.

Use CSS to set a blink.

<style >
..blink { text-decoration: blink; }
</style>
 
Top