Social Share Buttons Generator
Generate social media share buttons with live preview. Multiple styles with CSS and HTML code.
11.3Kuses
9.2/10(257)
Twitter/X
Facebook
LinkedIn
Reddit
WhatsApp
Email
Networks
40px
8px
8px
14px
Code
<!-- HTML -->
<div class="social-buttons">
<a href="#" class="social-btn social-btn--twitter-x">Twitter/X</a>
<a href="#" class="social-btn social-btn--facebook">Facebook</a>
<a href="#" class="social-btn social-btn--linkedin">LinkedIn</a>
<a href="#" class="social-btn social-btn--reddit">Reddit</a>
<a href="#" class="social-btn social-btn--whatsapp">WhatsApp</a>
<a href="#" class="social-btn social-btn--email">Email</a>
</div>
/* CSS */
.social-buttons {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.social-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
height: 40px;
padding: 0 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: opacity 0.2s;
text-decoration: none;
}
.social-btn:hover {
opacity: 0.85;
}
.social-btn--twitter-x {
background: #000000;
color: white;
border: none;
}
.social-btn--facebook {
background: #1877f2;
color: white;
border: none;
}
.social-btn--linkedin {
background: #0a66c2;
color: white;
border: none;
}
.social-btn--reddit {
background: #ff4500;
color: white;
border: none;
}
.social-btn--whatsapp {
background: #25d366;
color: white;
border: none;
}
.social-btn--email {
background: #64748b;
color: white;
border: none;
}Recommended Products
Ad📖Web Design BooksShop →🎨Color Reference GuidesShop →✏️Drawing TabletsShop →🎨Design SoftwareShop →🖥️Monitor CalibratorsShop →💻Laptop StandsShop →🖱️Wireless MouseShop →🔌USB-C HubShop →👓Blue Light GlassesShop →🖥️Desk PadShop →
Affiliate Disclosure: As an Amazon Associate, ToolBird earns from qualifying purchases. Links above are affiliate links — if you buy through them, we may earn a small commission at no extra cost to you.
Disclaimer: This tool is provided as-is for informational and educational purposes only.