Trust Badge Generator
Create professional trust badges and social proof elements for your website
Badge Type
Style Presets
Customization
100%
Preview
100%Satisfaction Guarantee
HTML
<div class="trust-badge">
<span class="trust-badge-icon">✓</span>
<div class="trust-badge-content">
<span class="trust-badge-title">100%</span>
<span class="trust-badge-subtitle">Satisfaction Guarantee</span>
</div>
</div>CSS
.trust-badge {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1.25rem;
background: linear-gradient(135deg, #10b981, #065f46);
color: #ffffff;
border-radius: 12px;
font-family: system-ui, -apple-system, sans-serif;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.trust-badge-icon {
font-size: 1.5rem;
}
.trust-badge-content {
display: flex;
flex-direction: column;
}
.trust-badge-title {
font-size: 1rem;
font-weight: 700;
line-height: 1.2;
}
.trust-badge-subtitle {
font-size: 0.75rem;
opacity: 0.9;
}