42 views UI Components Hire Me
Live Preview Glassmorphism Profile Card
<div class="glass-card">
    <img src="https://via.placeholder.com/100" alt="Profile">
    <h3>Koushik Saha</h3>
    <p>Frontend Developer</p>
    <button>Follow</button>
</div>
body {
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.glass-card {
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    width: 300px;
    border: 1px solid rgba(255,255,255,0.2);
}

.glass-card img {
    border-radius: 50%;
    margin-bottom: 15px;
}

.glass-card button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    background: #fff;
    color: #333;
    cursor: pointer;
}
console.log("Glassmorphism Card Loaded");
View | All Snippets
HTML CSS JS