JSFiddle - React, Tailwind, and code Playground
by orrinward
HTML
<div class="pad12">
<h2 class="noMBot">Sign up to any website,</h2>
<h2 class="noMBot">subscribe to any newsletter,</h2>
<h2 class="">and never worry about your email.</h2>
<p>tester</p>
</div>
CSS
body{background:#333;font-family:Arial,Helvetica, sans-serif;color:#fff;}
h2{display:none;font-weight:bold;font-size:30px;text-shadow:1px 1px #000;color:#fff;}
JavaScript
$("h2").each(function(index) {
$(this).delay((5000*index)+100).fadeTo(200,1.0);
});