Online HTML Editor
RUN CODE ❯
(shift+enter)
HTML Tutorials
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Example of the HTML Blink Tag</title> <style> body { font-family: Arial, sans-serif; line-height: 1.5; background-color: #FFF; font-size: 16px; color: #3a3a3a; } blink { color: #2d38be; /* Deep blue color for the text */ font-size: 16px; /* Slightly larger font size for better readability */ } </style> </head> <body> <h1>About the HTML Blink Tag</h1> <blink>HTML blink tags are not commonly used and are unsupported in most modern browsers. This tag might not function as expected in your current browser.</blink> <p>Observe the blinking effect above, if supported by your browser.</p> <hr> <p>For a modern and widely supported approach to create blinking text, CSS animations are recommended.</p> <a href="https://htmleditor.w3schools.in/?filename=html_css_blink" target="_blank">Click here</a> for a CSS-based blinking text demonstration. </body> </html>
/
Response