Image is attached what i wanna get
Hello everyone I tried to get help form google and it did not work for me i have tried display as table-cells, table, flex, grid etc. So i am looking for some help if you can thank you everyone.
<html>
<style>
.contact-us{
background-color: grey;
width: 100%;
min-height: 230px;
padding: 50px 300px 50px 300px;
display: grid;
text-align: center;
color: #fff;
vertical-align: middle;
}
.contact-us .btn{
width: 100px;
height: 30px;
text-align: center;
font-size: 13px;
display: grid;
}
</style>
<body>
<div class="contact-us">
<h2>CONTACT US TODAY</h2>
<h5>Have any questions or comments? Need a WINZ quote? Call us at (022) 1736590.</h5>
<button class="btn">CONTACT US</button>
</div>
</body>
</html>