<div class="text-wrapper">
  <div class="text-typing-demo">"It's weird not to be weird" - John Lennon</div>
</div>
.text-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; 
}

.text-typing-demo {
  width: 42ch;
  animation: typing 2s steps(22), blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 2em;
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.