JSFiddle - React, Tailwind, and code Playground

by soulwire

HTML

<iframe src="http://www.a-blue-box.com/"></iframe>

<div class="ad">
    <!-- Add any HTML you want here! 40,000 rupees per byte -->    
    Free Cats!
</div>

CSS

html, body {
    -overflow: hidden;
    height: 100%;
    margin: 0;
}
iframe {
    position: absolute;
    border: none;
    height: 100%;
    width: 100%;
}

.ad {
    color: blue;
    text-align: center;
    position: absolute;
    font-size: 120px;
    overflow: hidden;
    height: 60%;
    width: 60%;
    left: 20%;
    top: 20%;
}