Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <!-- Place the following CSS in your <head> or stylesheet --> <style> /* This is an optional body style to provide a background for the page */ body { background-color: #f3f4f6; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif; } /* Optional: a container to center the card on the page for demonstration */ .demo-container-benefit { display: flex; justify-content: center; padding: 2rem; } /* === Benefit Card Styles === */ .benefit-card { --benefit-card-radius: 12px; --benefit-card-shadow: 0 4px 10px rgba(0,0,0,0.06); --check-icon-color: #16a34a; /* Green */ background-color: #ffffff; border-radius: var(--benefit-card-radius); box-shadow: var(--benefit-card-shadow); max-width: 480px; width: 100%; padding: 2rem; } .benefit-card-title { font-size: 1.5rem; font-weight: 700; margin-top: 0; margin-bottom: 1.5rem; text-align: center; } .benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; } .benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1.05rem; line-height: 1.5; color: #374151; } .benefit-item svg { width: 24px; height: 24px; color: var(--check-icon-color); flex-shrink: 0; margin-top: 2px; } </style> <!-- Place the following HTML in your <body> --> <div class="demo-container-benefit"> <article class="benefit-card"> <h3 class="benefit-card-title">What You'll Get</h3> <ul class="benefit-list"> <li class="benefit-item"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /></svg> <span><strong>Lifetime Access & Updates:</strong> Get all future templates and improvements at no extra cost.</span> </li> <li class="benefit-item"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /></svg> <span><strong>Premium Community Support:</strong> Join a network of developers and designers for help and inspiration.</span> </li> <li class="benefit-item"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /></svg> <span><strong>Ready-to-Use Source Code:</strong> Copy & paste components directly into your projects to save hours of work.</span> </li> </ul> </article> </div>