<h1>ORANGE</h1>

<p>Info: <a href="https://codepen.io/FelixRilling/pen/qzfoc" target="_blank">Neon Glow</a> A Pen By <a href="https://codepen.io/FelixRilling" target="_blank">Felix Rilling</a></p>
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #222222;
  background: repeating-linear-gradient(45deg, #2b2b2b 0%, #2b2b2b 10%, #222222 0%, #222222 50%) 0 / 15px 15px;
  width: 800px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 7em;
  margin: 50px 0;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: default;
  color: #FF9900;
  font-family: Audiowide;
  animation: neon 2s ease-in-out infinite alternate;
  -moz-user-select: none;
  -webkit-user-select: none;
}

@keyframes neon {
  from {
    color: #ffffff;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF9900, 0 0 70px #FF9900, 0 0 80px #FF9900, 0 0 100px #FF9900, 0 0 150px #FF9900;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FF9900, 0 0 35px #FF9900, 0 0 40px #FF9900, 0 0 50px #FF9900, 0 0 75px #FF9900;
  }
}

External CSS

  1. https://fonts.googleapis.com/css?family=Audiowide

External JavaScript

This Pen doesn't use any external JavaScript resources.