Badges Component
A simple and responsive Badges Component designed with a 3D aesthetic and complementary color scheme for blog and content consumption. Supports dark mode.
HTML Code
<div class="flex flex-wrap p-5 justify-center">
<div class="m-2 transition-transform transform hover:scale-105 bg-blue-500 dark:bg-blue-700 text-white rounded-lg shadow-lg p-4">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="Avatar" class="w-8 h-8 rounded-full mr-2">
<span class="font-semibold">Badge 1</span>
</div>
<p class="text-sm mt-2">This is a description for badge 1.</p>
</div>
<div class="m-2 transition-transform transform hover:scale-105 bg-red-500 dark:bg-red-700 text-white rounded-lg shadow-lg p-4">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/1.jpg" alt="Avatar" class="w-8 h-8 rounded-full mr-2">
<span class="font-semibold">Badge 2</span>
</div>
<p class="text-sm mt-2">This is a description for badge 2.</p>
</div>
<div class="m-2 transition-transform transform hover:scale-105 bg-green-500 dark:bg-green-700 text-white rounded-lg shadow-lg p-4">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/2.jpg" alt="Avatar" class="w-8 h-8 rounded-full mr-2">
<span class="font-semibold">Badge 3</span>
</div>
<p class="text-sm mt-2">This is a description for badge 3.</p>
</div>
</div>
Related Components
RetroBadges
Retro/Vintage Badges Component for Business/Corporate websites with Complementary color scheme. Simple layout, responsive design with dark theme support. No JavaScript.
Badges Component 48
A Badges Component designed with Material Design principles, featuring responsive layouts and dark theme support using Tailwind CSS.
Skeuomorphic Badges
A set of badges with a skeuomorphic design, complementary color scheme, and simple layout, suitable for a blog or content site. Responsive with dark mode support.