<span class="live-badge">LIVE</span>

<style>
  .live-badge {
    display: inline-block;
    background-color: red;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 20px;
    animation: blink 1s step-start infinite;
  }

  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
</style>
