Blink

Hello Lets build something

<style>
  h3.blank:after {
    content:'';
    border-right: 2px solid black;
    animation: blink .8s infinite;
  }
  @keyframes blink {
    50% {
      opacity:0;
    }
  }
</style>

<h3 class="blank">A</h3>

Leave a Reply

Your email address will not be published. Required fields are marked *