Startup Pricing

0 viewseasy
Background:
Startup Pricing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<div class="startup_pricing_card">
  <div class="pricing-card">
    <div class="pricing-badge">Most Popular</div>
    <div class="pricing-header">
      <h3 class="plan-name">Professional</h3>
      <div class="price-display">
        <span class="currency">$</span>
        <span class="price">29</span>
        <span class="period">/month</span>
      </div>
    </div>
    <div class="pricing-features">
      <div class="feature-item">
        <svg class="check-icon" viewBox="0 0 20 20" fill="currentColor">
          <path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/>
        </svg>
        <span>Unlimited Projects</span>
      </div>
      <div class="feature-item">
        <svg class="check-icon" viewBox="0 0 20 20" fill="currentColor">
          <path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/>
        </svg>
        <span>Priority Support</span>
      </div>
      <div class="feature-item">
        <svg class="check-icon" viewBox="0 0 20 20" fill="currentColor">
          <path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/>
        </svg>
        <span>Advanced Analytics</span>
      </div>
    </div>
    <button class="pricing-button">Get Started</button>
  </div>
</div>
Was this helpful?

What is inside Startup Pricing

Startup Pricing is a CSS button built with gradient fills, transforms, layered shadows, defined in 92 lines across 15 selectors.

27
CSS properties
15
Selectors
92
Lines of CSS
3
Formats

Techniques used

TransitionsTransformsGradientsShadowsHover stateFlexbox

CSS properties in this component

align-itemsbackgroundborderborder-colorborder-radiusbox-shadowcolorcursordisplayflex-shrinkfont-familyfont-sizefont-weightgapheightjustify-contentleftmarginmargin-bottommax-widthpaddingpositiontext-aligntoptransformtransitionwidth

Accessibility check1 to fix

  • Built on a native <button> element, so keyboard focus and screen reader semantics work without extra attributes.
  • No focus style is defined. Add one before shipping, or keyboard users lose track of position.

These notes are generated by reading this component's own source, so they describe what it actually does rather than what a template says. Copy the code above in HTML, CSS, Tailwind and adapt it freely.