MASIGNASUKAv102
6510051498749449419

20 Cool Loading Screen Codes For Blogger Template Free Download

20 Cool Loading Screen Codes For Blogger Template Free Download
Add Comments
Sunday, 23 February 2025
Cool Buttons with Code

Cool Buttons with Code

<button class="btn-cool">Cool Button</button>
<style>
    .btn-cool {
        padding: 12px 24px;
        background: linear-gradient(to right, #ff416c, #ff4b2b);
        color: white;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }
    .btn-cool:hover {
        transform: scale(1.1);
    }
</style>