Instagram Follow Button Style - Frontend 2024 - Html & CSS.

 Instagram Follow Button


Code : 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        .follow-btn{
            background-color: rgb(33, 125, 218);
            border: none;
            border-radius: 4px;
            padding: 5px 12px;
            color: white;
            margin: 0 30%;
            font-weight: bold;
            letter-spacing: 1px;
        }
    </style>

</head>
<body>

    <button class="follow-btn">
        Follow
    </button>
   
</body>
</html>

Follow us for more Frontend Designs.

Comments

Popular posts from this blog

Finding Second largest number in Array - Java - TCS - Technical Interview

Checking Character only in String - Java 2024 - MNC - Technical Interview

Object Class in Java | Article | Solution Maker - Blog