CTA Pattern

by Victor

HTML

<div class="cta">
    <div>
        Looking to be Acquired?
        <br/>
        <p>We may be interested.</p>
        <br/>
        <a href="#">Contact Us</a>
    </div>
</div>

CSS

.cta {
    width:100%;
    background: #e3e3e3;
    text-align: center;
    padding:40px;
    font-size:25px;
}
.cta a {
    margin:0;
    padding:4px 10px;
    background:#999;
    text-decoration: none;
    color:white;
    border-radius:4px;
}
.cta p {
    font-size:18px;
}