How to setup whatsapp live chat on your website with code
How to setup whatsapp live chat on your website with code
css purpose
.whatsapp {
position: fixed;
right: 0px;
top: 52%;
}
.whatsapp h5 {
color: white;
background: #20b20f;
padding: 12px;
border-radius: 10px;
}
with spin
<div class="whatsapp">
<a href="https://api.whatsapp.com/send?phone=91-----" target="_blank">
<h5><i class="fa fa-whatsapp fa-3x fa-spin" aria-hidden="true"></i></h5></a>
</div>
without spin
<div class="whatsapp">
<a href="https://api.whatsapp.com/send?phone=91-----------" target="_blank">
<h5><i class="fa fa-whatsapp fa-3x " aria-hidden="true"></i></h5></a>
</div>
URL -
https://api.whatsapp.com/send?phone=91
Top