How to add buttons using pure CSS
Hello everyone, Welcome here, nowadays buttons are a required thing for websites and if you might be finding a solution to implement buttons in your website then this tutorial is for you. In this tutorial, Iam going to show you How to add beautiful buttons using pure CSS. So without wasting much time let's check how to add buttons to your website. How to add beautiful buttons using pure CSS on a website? First of all, open your .html file where you need to add buttons Then find </head> and paste the following CSS just above it <style>/* Buttons (Teorzo) */.TZ-btns{display:flex;justify-content:center;gap:12px;}.TZ-btns:by{'Teorzo'}/* Simple Button (Teorzo) */.TZ-btn{background: blue ;color :#fff ;padding:10px;text-decoration:none;border-radius: 40px }.TZ-btn:hover{background:transparent;border:1px solid blue ;color: inherit }/* Button Outline (Teorzo) */.TZ-btn.outline{background:transparent;border:1px solid gray ;color: inherit }.TZ-btn.outline:hover{bor...
