Tag html

5 bookmarks have this tag.

2025-12-31

676.

Code example for blinking text

www.w3docs.com/tools/code-editor/13719
<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      .blink {
        animation: blink-animation 1s steps(5, start) infinite;
        -webkit-animation: blink-animation 1s steps(5, start) infinite;
      }
      @keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
      @-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
    </style>
  </head>
  <body>
    Here is a <span class="blink">blinking</span> text.
  </body>
</html>
675.

You can make up HTML tags:

maurycyz.com/misc/make-up-tags

2025-10-04

647.

Filtering items with just CSS and HTML

solaria.neocities.org/guides/cssfilter

2025-02-15

504.

Please Make Your Table Headings Sticky

btxx.org/posts/Please_Make_Your_Table_Headings_Sticky

2024-06-10

248.

A Blog Post With Every HTML Element

www.patrickweaver.net/blog/a-blog-post-with-every-html-element