HTML - blink Tag



The HTML <blink> tag is used to enclose a text to make it blink. This tag was supported by Netscape and now this is obsolete.

This tag was deprecated in HTML 4.0 and is not supported by the modern browsers. Instead you can use the CSS or JavaScript to achieve the similar effect.

Example

Consider the following example, where we are going to use the blink tag in the HTML documnet.

<!DOCTYPE html>
<html>

   <head>
      <title>HTML blink Tag</title>
   </head>

   <body>
      <blink>This text will blink in Netscape Version 5.0</blink>
   </body>

</html>

When we run the above code, it will generate an output consisting of the text on the webpage.

Advertisements