JSFiddle - React, Tailwind, and code Playground

by Praveen Kumar Purushothaman

HTML

<div class="video">
    <iframe width="420" height="315" src="//www.youtube.com/embed/7M-jsjLB20Y?rel=0&autoplay=1" frameborder="0" allowfullscreen></iframe>
</div>
<a href="#" class="hidden">Enter Site</a>

CSS

.hidden {display: none;}

JavaScript

$(document).ready(function(){
    setTimeout(function(){
        $(".hidden").removeClass("hidden");
    }, 25000);
});