JSFiddle - React, Tailwind, and code Playground

by Siddharth Motwani

HTML

<h2>different color</h2>

<a class="pink"  href="#">IIT-JEE(Adv) - 2014</a>
<a class="yellow" href="#">JEE MAIN - 2014</a>
<a class="green" href="#">AIPMT/Guj-CET - 2014</a>
<a class="red" href="#">GSEB - 2014</a>
<a class="blue" href="#">CBSE - 2014</a>

<h2>common color</h2>

<a class="CommonColor"  href="#">IIT-JEE(Adv) - 2014</a>
<a class="CommonColor" href="#">JEE MAIN - 2014</a>
<a class="CommonColor" href="#">AIPMT/Guj-CET - 2014</a>
<a class="CommonColor" href="#">GSEB - 2014</a>
<a class="CommonColor" href="#">CBSE - 2014</a>

CSS

.pink{ background: pink;}
.yellow{ background: yellow;}
.green{ background: green;}
.red{ background: red;}
.blue{ background: orange;}

.CommonColor{ background: grey;}