-----html ---
<table width="95%" border="0" align="center"><tbody><tr>
<td style="text-align: center;"><a class="link_insta" href="https://www.instagram.com/" target="_blank">Instagram</a></td>
<td style="text-align: center;"><a class="link_fb" href="https://www.facebook.com/" target="_blank">Facebook</a></td>
<td style="text-align: center;"><a class="link_wa" href="https://chat.whatsapp.com/" target="_blank">WhatsApp</a></td>
</tr></tbody></table>
---- html------
----- css------
.link_insta {
padding: 0.7rem;
background: linear-gradient(90deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#bc1888 75%,#d047d1 100%);
border-radius: 5px;
text-align: center;
display: block;
}
a.link_insta:hover,
a.link_insta:active,
.link_insta {
color: #fff;
text-decoration: none;
}
.link_fb {
padding: 0.7rem;
background: #4b69b1;
border-radius: 5px;
text-align: center;
display: block;
}
a.link_fb:hover,
a.link_fb:active,
.link_fb {
color: #fff;
text-decoration: none;
}
.link_wa {
padding: 0.7rem;
background: #2ba63a;
border-radius: 5px;
text-align: center;
display: block;
}
a.link_wa:hover,
a.link_wa:active,
.link_wa {
color: #fff;
text-decoration: none;
}
----- css------