Posts

Showing posts from August, 2020

What is whatsapp web and how it works ? Guide 2025

Image
What is whatsapp ( whats up web ) ? In this post you will know about whatsapp and whatsapp web. In the latest generation, we are depended on technology. Technology has given us the ways that make our life better to live. Whatsapp Whatsapp web In messaging and voice sharing system whatsapp is best medium. Whatsapp is a text messaging, voice messaging and videos calling application. It allows the users to send text messages, voice messages and videos calls using internet connection to another user. In whatsapp we can also send images, documents and others media files to another whatsapp user within few seconds with a click. WhatsApp application can be used or accessed by both mobile devicess or Computers (PC). WhatsApp requires internet connection to run on both devices. The Whatsapp messenger or whatsapp was firstly developed by whatsapp inc. of mountain view of California which was later ac...

How to create a download button in html for your websites

How to create a download button in html to use in websites ? You can create a stylish download button in html using the button tag and adding a downloadable link. Let's know how to make it. Look below at the html source code carefully. First of all let's create a simple html button using button tag given below. HTML <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <button class="download-button-t01"> <i class="fa-fa-download"></i> Download </button> Css <style type="text/css"> .download-button-t01 { background-color:white; border:1px silver solid; box-shadow:0px 3px 3px 0px silver; padding:4px; } </style> Preview Download Instructions Add a icons library to yo...