-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (97 loc) · 4.76 KB
/
index.html
File metadata and controls
102 lines (97 loc) · 4.76 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Pricing Table</title>
<meta name="description" content="A responsive pricing table built entirely with HTML and CSS - no JavaScript required. Features Basic, Extended, and Premium plans.">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="pricing-container">
<header class="pricing-header">
<h1>Choose Your Plan</h1>
<p>Select the perfect plan for your needs</p>
</header>
<div class="pricing-grid">
<!-- Basic Plan -->
<div class="pricing-card">
<div class="plan-header">
<i class="fas fa-rocket plan-icon"></i>
<h2>Basic</h2>
<p class="plan-subtitle">Perfect for getting started</p>
</div>
<div class="plan-price">
<span class="currency">$</span>
<span class="amount">9</span>
<span class="period">/month</span>
</div>
<ul class="plan-features">
<li><i class="fas fa-check"></i> 5 Projects</li>
<li><i class="fas fa-check"></i> 10 GB Storage</li>
<li><i class="fas fa-check"></i> Community Support</li>
<li><i class="fas fa-check"></i> Basic Analytics</li>
<li><i class="fas fa-check"></i> Mobile App Access</li>
</ul>
<a href="#" class="plan-button">Get Started</a>
</div>
<!-- Extended Plan -->
<div class="pricing-card featured">
<div class="popular-badge">Most Popular</div>
<div class="plan-header">
<i class="fas fa-star plan-icon"></i>
<h2>Extended</h2>
<p class="plan-subtitle">Best for growing businesses</p>
</div>
<div class="plan-price">
<span class="currency">$</span>
<span class="amount">29</span>
<span class="period">/month</span>
</div>
<ul class="plan-features">
<li><i class="fas fa-check"></i> 20 Projects</li>
<li><i class="fas fa-check"></i> 100 GB Storage</li>
<li><i class="fas fa-check"></i> Priority Support</li>
<li><i class="fas fa-check"></i> Advanced Analytics</li>
<li><i class="fas fa-check"></i> Mobile App Access</li>
<li><i class="fas fa-check"></i> API Access</li>
<li><i class="fas fa-check"></i> Custom Integrations</li>
</ul>
<a href="#" class="plan-button">Get Started</a>
</div>
<!-- Premium Plan -->
<div class="pricing-card">
<div class="plan-header">
<i class="fas fa-crown plan-icon"></i>
<h2>Premium</h2>
<p class="plan-subtitle">For enterprise needs</p>
</div>
<div class="plan-price">
<span class="currency">$</span>
<span class="amount">99</span>
<span class="period">/month</span>
</div>
<ul class="plan-features">
<li><i class="fas fa-check"></i> Unlimited Projects</li>
<li><i class="fas fa-check"></i> 1 TB Storage</li>
<li><i class="fas fa-check"></i> 24/7 Priority Support</li>
<li><i class="fas fa-check"></i> Premium Analytics</li>
<li><i class="fas fa-check"></i> Mobile App Access</li>
<li><i class="fas fa-check"></i> Full API Access</li>
<li><i class="fas fa-check"></i> Custom Integrations</li>
<li><i class="fas fa-check"></i> Dedicated Account Manager</li>
<li><i class="fas fa-check"></i> White-label Options</li>
</ul>
<a href="#" class="plan-button">Get Started</a>
</div>
</div>
<footer class="pricing-footer">
<p>All plans include a 14-day free trial. Cancel anytime.</p>
</footer>
</div>
</body>
</html>