HTML <blink> Tag Last Updated : 28 Jun, 2024 Comments Improve Suggest changes Like Article Like Report The HTML <blink> tag was used to create blinking text that flashes slowly. It is now obsolete and unsupported in modern browsers, as it was never standardized. Instead, CSS and JavaScript are recommended for similar effects, although blinking text is generally discouraged for accessibility reasons.Syntax<blink> Here is your text that has to blink. </blink>Note: The <blink> tag is deprecated and not supported in modern browsers. It is advisable to use CSS and JavaScript to achieve similar visual effects if needed but with caution.Example 1: Deprecated <blink> TagThis example won’t work as a result of the blink component being deprecated. html <!DOCTYPE html> <html> <head> <title> Blinking text using HTML </title> </head> <body> <h1>GeeksforGeeks</h1> <blink> Blink tag not working in HTML </blink> </body> </html> Output:Example 2: Creating a Blinking Effect with JavaScriptIn this example we creates a blinking text effect using JavaScript. The <p> element with "Hello Geeks let's Blink" toggles its opacity every second, creating a blink effect. html <!DOCTYPE html> <html> <head> <title> Blinking with JavaScript </title> <style> #blink { font-size: 20px; font-weight: bold; font-family: sans-serif; } </style> </head> <body> <p id="blink"> Hello Geeks let's Blink </p> <script type="text/javascript"> let blink = document.getElementById('blink'); setInterval(function () { blink.style.opacity = (blink.style.opacity == 0 ? 1 : 0); }, 1000); </script> </body> </html> Output:Supported BrowsersThe <blink> tag is not supported in any modern browser and was never fully standardized. The CSS and JavaScript method shown above will work in all modern browsers. Comment More infoAdvertise with us Next Article HTML <blink> Tag Y yash41997 Follow Improve Article Tags : Web Technologies HTML HTML-Tags Similar Reads HTML <s> Tag This tag is used to specify that the text content is no longer correct or accurate. This tag is similar but slightly different from the <del> tag. The <s> tag should not be used to define deleted text, rather use the <del> tag for that.The <s> tag is used to define text that 2 min read HTML <nav> Tag The <nav> tag in HTML is used to define navigation sections on a webpage. It typically contains links to key parts of the site, such as the main menu, table of contents, or index. These links are usually organized using unordered lists (<ul>) or displayed as standalone links.Using the 3 min read HTML <rtc> Tag The HTML <rtc> tag is used to define the explanation of the ruby annotation which is a small text, attached with the main text. Such kind of annotation is used in Japanese or chinese publications. The <rtc> tag contains the <rt> tag. Note: HTML <rtc> tag is not supported in h 1 min read HTML <html> Tag HTML is a language full of diverse elements, and one such element is the <html> tag. This tag, standing for âHyperText Markup Languageâ, is used to define the root of an HTML or XHTML document.It serves as the main container for all other HTML elements, excluding the <!DOCTYPE> declarati 3 min read HTML <link> Tag The HTML <link> tag defines the relationship between the current document and an external resource, often for stylesheets or favicons. It's an empty element with attributes like href and rel.Note: The <link> tag also supports the Global Attributes and  Event Attributes in HTML.Syntax 2 min read Like