JSFiddle - React, Tailwind, and code Playground

by Matthew Sullivan

HTML

<div class="wrapper">
    <div class="promo">
        <a href="link.com">Get Coupons!</a>
    </div>
</div>

CSS

.wrapper{
    
    width: 960px;
    height: 200px;
    background-color: #000000;
}

.promo{
    
    width: 200px;
    height: 200px;
    background-color: #f2f2f2;
    margin: auto;
    text-align:center;
}