Use the <blink> tag to blink a text. The HTML <blink> tag is used to enclose a text to make it blink.
You can try to run the following code to implement <blink> tag −
Note − Do not use this element as it is obsolete.
Example
<!DOCTYPE html> <html> <head> <title>HTML blink Tag</title> </head> <body> <blink>This text will blink in Netscape Version 5.0</blink> </body> </html>