Download a free Eventbrite SVG icon. Customize the color and size, copy the HTML code, or download as SVG/PNG for your website or app.
Downloading a single Eventbrite icon is just the beginning. With our free icon set creator, you can build a complete library of SVG icons tailored to your project.
Add this Eventbrite SVG to a set and embed on your site
<!-- Add this directly to your HTML -->
<svg class="eventbrite-icon" viewBox="0 0 24 24" width="24" height="24">
<path d="..." />
</svg>
Download the Eventbrite SVG file and reference it in your HTML. Good for reusing the same icon multiple times.
<!-- As an image -->
<img src="icons/eventbrite.svg" alt="Eventbrite" width="24" height="24">
<!-- As a background image -->
<div class="eventbrite-bg" style="background-image: url('icons/eventbrite.svg');"></div>
Use PNG when you need compatibility with older browsers or email clients that don't support SVG.
<img src="icons/eventbrite-64.png" alt="Eventbrite" width="32" height="32">
<!-- For decorative icons -->
<svg aria-hidden="true" role="img">...</svg>
<!-- For clickable icons -->
<a href="https://eventbrite.com/profile" aria-label="Visit our Eventbrite page">
<svg>...</svg>
</a>
<!-- With visible text -->
<button>
<svg aria-hidden="true">...</svg>
<span>Follow on Eventbrite</span>
</button>
/* CSS for inline SVG */
.eventbrite-icon {
width: 32px;
height: 32px;
fill: currentColor; /* Inherits text color */
transition: transform 0.2s;
}
.eventbrite-icon:hover {
transform: scale(1.1);
fill: #667eea; /* Custom hover color */
}
display: none
or visibility: hidden
). Verify the file path is correct if using PNG/SVG files, and clear your browser cache to see updates.
width="32px" height="32px"
attributes to the <svg>
tag or use CSS like svg { width: 32px; height: 32px; }
. For PNG icons, use CSS: img { width: 32px; height: 32px; }
. SVG icons scale perfectly at any size.
svg { fill: #1DA1F2; }
or svg { color: #1DA1F2; }
. PNG icons have fixed colors and cannot be changed. This is why SVG is recommended for customization flexibility.
<svg width="48px" height="48px">
or use CSS: .my-icon { width: 48px; height: 48px; }
. For PNG icons, use CSS: img.icon { width: 48px; height: 48px; }
. SVG icons scale perfectly without quality loss.
text-align: center;
for center, float: left;
for left, float: right;
for right. For flexbox: display: flex; justify-content: center;
(center), justify-content: flex-start;
(left), or justify-content: flex-end;
(right).
svg { max-width: 100%; height: auto; }
. Use relative units (em, %) instead of fixed pixels. Test on actual devices and consider larger touch targets (minimum 44px) for better usability.
<object data="icon.svg"><img src="icon.png" alt="Eventbrite"></object>
.
<img src="icon.png" alt="Eventbrite social media link">
for PNG, or <title>Eventbrite icon</title>
inside SVG tags. Use aria-label
on links: <a href="#" aria-label="Follow us on Eventbrite">
.