JSFiddle - React, Tailwind, and code Playground

by Shishir Morshed

HTML

<a href="">News Title<span>Date</span></a>

CSS

body {
  text-align: center;
}

a {
  font-size: 18px;
  line-height: 20px;
  font-family: arial;
  text-decoration: none;
  color: tomato;
  transition: all 300ms;
}

a span {
  display: block;
  font-size: 12px;
}

a:hover {
  color: #000;
}