-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing_table.html
More file actions
177 lines (151 loc) · 4.39 KB
/
pricing_table.html
File metadata and controls
177 lines (151 loc) · 4.39 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SaaS Pricing table sample</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
.container {
background-color: #F7F9FD;
text-align: center;
min-height: 95vh;
padding-top: 5vh;
}
.credit-card-message {
background-color: #FBFCFE;
display: inline-block;
border-radius: 20px;
padding-left: 50px;
padding-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
}
.card-container {
margin: 10px;
display: flex;
flex-direction: row;
justify-content: center;
gap: 20px;
}
.card {
background-color: #FFFFFF;
width: 20vw;
height: auto;
min-height: 40vh;
padding: 20px;
border-radius: 10px;
box-shadow: 5px 5px 5px 0px #D9E2EC;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
}
.card>.plan {
font-weight: bold;
}
.card>.price {
font-size: 25px;
font-weight: bold;
}
.card>.features {
text-align: left;
color: #394057;
font-size: smaller;
}
.card>.features>li {
margin-bottom: 10px;
}
.btn {
background-color: #F7F9FD;
border: 1px solid #D9E2EC;
border-radius: 5px;
padding: 10px 20px 10px 20px;
margin-top: auto;
margin-bottom: 10px;
font-size: small;
}
.btn:hover {
background-color: #e343ae;
cursor: pointer;
color: #FFF
}
.primary {
background-color: #4365E3;
color: #FFFFFF;
}
</style>
</head>
<body>
<div class="container">
<h1>Choose your plan</h1>
<p>
Be the first to know when boardme launches. Early access users will receive <br>an extended free trial and
early bird pricing options
</p>
<br>
<p>
Billed monthly
<input type="checkbox" checked>
Billed annually
</p>
<div class="card-container">
<div class="card">
<p class="plan">Free
</p>
<p class="price">
$0
</p>
<ul class="features">
<li>50 requests</li>
<li>3 projects</li>
<li>Extended free trial</li>
</ul>
<div class="btn">Get Started</div>
</div>
<div class="card">
<p class="plan">Standard
</p>
<p class="price">
$99/month
</p>
<ul class="features">
<li>500 requests</li>
<li>10 projects</li>
<li>Extended free trial</li>
</ul>
<div class="btn primary">Get Started</div>
</div>
<div class="card">
<p class="plan"> Enterprise
</p>
<p class="price">
Let's Talk
</p>
<ul class="features">
<li>15000 requests</li>
<li>Unlimited projects</li>
<li>Extended free trial</li>
</ul>
<div class="btn">Get Started</div>
</div>
</div>
<p class="credit-card-message">
No credit card required
</p>
</div>
<div style="text-align: center;">
<p>
Design Inspiration: <a href="https://www.uidesigndaily.com/posts/sketch-pricing-table-price-day-830"
target="_blank">Pricing Table - By UI
Design Daily
</a>
</p>
<p>
Future enhancement: Currently this design is not mobile responsive. We can make it mobile responsive.
</p>
</div>
</body>
</html>