-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.html
More file actions
96 lines (96 loc) · 3.83 KB
/
pricing.html
File metadata and controls
96 lines (96 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gofi Pricing</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: sans-serif; line-height: 1.5; color: #2e3440; background: #f0f1f3; }
a { text-decoration: none; color: #2e3440; }
nav { background: #fff; border-bottom: 1px solid #ccc; padding: 0.5rem 1rem; }
nav ul { display: flex; list-style: none; justify-content: flex-end; gap: 1.5rem; }
nav li a { font-weight: bold; padding: 0.25rem 0.5rem; }
nav li a:hover { background: #e2e4e6; border-radius: 4px; }
.container { max-width: 800px; margin: 1.5rem auto; background: #fff; padding: 1.5rem; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
h1 { margin-bottom: 1rem; font-size: 1.75rem; text-align: center; }
.plans { display: flex; gap: 2rem; justify-content: center; margin-top: 2rem; }
.plan {
background: #f7f9fa;
border: 1px solid #dbe2ea;
border-radius: 8px;
padding: 2rem 1.5rem;
width: 220px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.03);
display: flex;
flex-direction: column;
align-items: center;
}
.plan-title { font-size: 1.2rem; font-weight: bold; margin-bottom: 0.5rem; }
.plan-price { font-size: 2rem; font-weight: bold; margin: 0.5rem 0 1rem 0; color: #2e86de; }
.plan-free .plan-price { color: #43a047; }
.plan-features { list-style: none; margin-bottom: 1.5rem; }
.plan-features li { margin-bottom: 0.5rem; }
.plan-action {
margin-top: auto;
padding: 0.5rem 1.5rem;
background: #2e86de;
color: #fff;
border: none;
border-radius: 4px;
font-size: 1rem;
cursor: pointer;
text-decoration: none;
display: inline-block;
}
.plan-action:hover { background: #246fb1; }
.plan-free .plan-action { background: #43a047; }
.plan-free .plan-action:hover { background: #357a38; }
</style>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="docs.html">Docs</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="container">
<h1>Pricing Plans</h1>
<div class="plans">
<div class="plan plan-free">
<div class="plan-title">Free</div>
<div class="plan-price">$0</div>
<ul class="plan-features">
<li>100 requests/month</li>
<li>Community support</li>
<li>Basic rate limiting</li>
</ul>
<a class="plan-action" href="#">Get Started</a>
</div>
<div class="plan plan-basic">
<div class="plan-title">Basic</div>
<div class="plan-price">$10</div>
<ul class="plan-features">
<li>10,000 requests/month</li>
<li>Email support</li>
<li>Faster cache refresh</li>
</ul>
<a class="plan-action" href="#">Choose Basic</a>
</div>
<div class="plan plan-pro">
<div class="plan-title">Pro</div>
<div class="plan-price">$25</div>
<ul class="plan-features">
<li>100,000 requests/month</li>
<li>Priority support</li>
<li>Custom cache & limits</li>
</ul>
<a class="plan-action" href="#">Choose Pro</a>
</div>
</div>
</div>
</body>
</html>