JSFiddle - React, Tailwind, and code Playground

by Lalji Tadhani

HTML

<h4>Hello world!</h4>

CSS

h4 {
      font-size:100px;
      margin-bottom:20px;
      margin-top:0;
      padding:0px;
      font-family:'Tangerine', cursive;
      font-weight:normal;
  }
 
h4:nth-letter(even){
        color:red;
    }
h4:nth-letter(odd){
        color:blue;
    }