JSFiddle - React, Tailwind, and code Playground

HTML

<p>
    <a href="#">
        <img src="http://httpd.apache.org/docs/current/images/feather.gif" />
    </a>
</p>

<p>Some text</p>

CSS

a{
    margin:0 auto;
    display:table;
}

img{
  display: none;
}

JavaScript

$(document).ready(function () {
    $("img").fadeIn(1000).removeClass('hidden');
});