-
Notifications
You must be signed in to change notification settings - Fork 0
/
pricing.html
294 lines (263 loc) · 11.7 KB
/
pricing.html
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TMetric-Pricing</title>
<link rel="stylesheet" href="./styles/navbar.css"/>
<link rel="stylesheet" href="./styles/pricing.css">
</head>
<body>
<div id="wrapper">
<header id="header" class="fixed-top">
<div id="logo">
<a href="index.html">
<img class="logo" src="https://basecamp.com/assets/extras/tmetric-e84b022c749757cdcb91de8155299e1b98e025105fe47a4a67d685283ea51781.png" alt="">
TMETRIC
</a>
<button type="button" data-toggle="dropdown">EN</button>
</div>
<div class="nav_links">
<nav>
<ul class="nav_links">
<li><a href="#">Why TMetric</a></li>
<li><a href="#" >Apps & Integrations</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="support.html">Support</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</div>
<div>
<a href="Login.html">Log In</a>
<a href="signup.html"><button>Sign Up</button></a>
</div>
</nav>
</header>
<div id="head">
<h1>Pricing</h1>
<p>All plans include free 30-day trial. No credit card required!
</p>
</div>
<div id="body">
<div id="maths">
<div class="period">
<label id="periodid" for="paymentPeriod">Monthly</label>
<span>
<input type="checkbox" class="switch">
</span>
<label id="annualid" for="paymentPeriod">Annually</label>
</div>
<div class="divider"></div>
<div class="teamsize">
<label for="teamsize">Team Size</label>
<input id="teamsizenumber" type="number">
<input id="teamrange" type="range" value="1" min="1" max="7" step="1">
</div>
</div>
<div id="features">
<div class="listunstyled">
<h1>Business</h1>
<div>
<p>$<span>7</span>/month</p>
</div>
<ul>
<li class="feature">Time tracking</li>
<li class="feature">Unlimited projects and clients</li>
<li class="feature">Reporting</li>
<li class="feature">Timer button in 50+ web apps</li>
<li class="feature">Calendar integrations: Google, Outlook</li>
<li class="feature">Billable rates and money tracking</li>
<li class="feature">Budgeting for projects</li>
<li class="feature">Invoicing</li>
<li class="feature">Task management</li>
<li class="feature">Activity levels for employees</li>
<li class="feature">Apps and sites usage reports</li>
<li class="feature">Screenshots capturing</li>
<li class="feature">Client logins for access to reports</li>
<li class="feature">Paid time off tracking</li>
<li class="feature">Payroll for employees</li>
<li class="feature">Time tracking permissions</li>
<li class="feature">Time-sync with Jira and QuickBooks</li>
<li class="feature">Time-sync with GitLab and Redmine</li>
<li class="feature">Time Off Calendar</li>
<li class="feature">Work Schedule</li>
<li class="feature">Team Dashboard</li>
</ul>
</div>
<div class="listunstyled">
<h1>Professional</h1>
<div>
<p>$<span>5</span>/month</p>
</div>
<ul>
<li class="feature">Time tracking</li>
<li class="feature">Unlimited projects and clients</li>
<li class="feature">Reporting</li>
<li class="feature">Timer button in 50+ web apps</li>
<li class="feature">Calendar integrations: Google, Outlook</li>
<li class="feature">Billable rates and money tracking</li>
<li class="feature">Budgeting for projects</li>
<li class="feature">Invoicing</li>
<li class="feature">Task management</li>
<li class="feature">Activity levels for employees</li>
<li class="nofeature">Apps and sites usage reports</li>
<li class="nofeature">Screenshots capturing</li>
<li class="nofeature">Client logins for access to reports</li>
<li class="nofeature">Paid time off tracking</li>
<li class="nofeature">Payroll for employees</li>
<li class="nofeature">Time tracking permissions</li>
<li class="nofeature">Time-sync with Jira and QuickBooks</li>
<li class="nofeature">Time-sync with GitLab and Redmine
</li>
<li class="nofeature">Time Off Calendar</li>
<li class="nofeature">Work Schedule</li>
<li class="nofeature">Team Dashboard</li>
</ul>
</div>
<div class="listunstyled">
<h1>Free</h1>
<div>
<p>$<span>0</span>/month</p>
</div>
<ul>
<li class="feature">Time tracking</li>
<li class="feature">Unlimited projects and clients</li>
<li class="feature">Reporting</li>
<li class="feature">Timer button in 50+ web apps</li>
<li class="nofeature">Calendar integrations: Google, Outlook</li>
<li class="nofeature">Billable rates and money tracking</li>
<li class="nofeature">Budgeting for projects</li>
<li class="nofeature">Invoicing</li>
<li class="nofeature">Task management</li>
<li class="nofeature">Activity levels for employees</li>
<li class="nofeature">Apps and sites usage reports</li>
<li class="nofeature">Screenshots capturing</li>
<li class="nofeature">Client logins for access to reports</li>
<li class="nofeature">Paid time off tracking</li>
<li class="nofeature">Payroll for employees</li>
<li class="nofeature">Time tracking permissions</li>
<li class="nofeature">Time-sync with Jira and QuickBooks</li>
<li class="nofeature">Time-sync with GitLab and Redmine
</li>
<li class="nofeature">Time Off Calendar</li>
<li class="nofeature">Work Schedule</li>
<li class="nofeature">Team Dashboard</li>
</ul>
</div>
</div>
</div>
<div id="logpart">
<a href="signup.html"><button>Get Started</button></a>
<p>Fully Functional 30-Day Trial</p>
<p>Check out <a href="#">detailed plan comparision</a></p>
</div>
<hr>
<div id="buy">
<h1>How to Buy?</h1>
<ol>
<li><a href="Login.html">Log in </a>to your TMetric account. If you don't have one, <a href="signup.html">sign up </a>now.</li>
<li>On the main menu, click <span>Workspace </span>and select <span> Subscription.</span></li>
<li>On the subscription page click <span>Upgrade Now.</span></li>
<li>Enter your team size, select subscription plan, and click <span>Proceed To Checkout.</span></li>
<li>On the shopping cart page enter your Billing Information and select Payment Options.</li>
<li>Click <span>Continue </span>to place an order.</li>
</ol>
</div>
<hr>
<div id="Question">
<div id="inside">
<div class="que">
<img src="./styles/images/q.png" alt="">
<div>Have a large team?</div>
</div>
<div class="ans">
<img src="./styles/images/a.png" alt="">
<div>You can save money with our volume discount for teams of 40+ users. Learn more on <a href="#">FAQ.</a> </div>
</div>
<div class="que">
<img src="./styles/images/q.png" alt="">
<div>Running a non-profit organization?</div>
</div>
<div class="ans">
<img src="./styles/images/a.png" alt="">
<div>We offer special <a href="">pricing options for non-profit </a> and education organizations. To apply, please <a href="">contact </a> the sales team.</div>
</div>
<div class="que">
<img src="./styles/images/q.png" alt="">
<div>Have other sales questions?</div>
</div>
<div class="ans">
<img src="./styles/images/a.png" alt="">
<div>Please contact our sales department at sales <a href="#"> sales@tmetric.com</a></div>
</div>
</div>
</div>
<div id="last">
<h2>Make time work for you!</h2>
<a href="signup.html"><button>Start Free Trial</button></a>
</div>
</div>
<footer>
<div id="foot">
<div id="lastlogo">
<div>
<a href="index.html">
<img src="https://basecamp.com/assets/extras/tmetric-e84b022c749757cdcb91de8155299e1b98e025105fe47a4a67d685283ea51781.png" alt="">
<p>TMETRIC</p>
</a>
</div>
</div>
<div class="apps">
<div>
<img style="width: 32px;" src="./styles/images/desk.png" alt="">
<a href="#">Desktop</a>
</div>
<div>
<img " src="./styles/images/ios.png" alt="">
<a href="#">iOS</a>
</div>
<div>
<img " src="./styles/images/android.png" alt="">
<a href="#">Android</a>
</div>
</div>
<div class="apps">
<div>
<img " src="./styles/images/chrome1.png" alt="">
<a href="#">Chrome</a>
</div>
<div>
<img " src="./styles/images/firefox.png" alt="">
<a href="#">Firefox</a>
</div>
<div>
<img " src="./styles/images/opera.png" alt="">
<a href="#">Opera</a>
</div>
<div>
<img " src="./styles/images/edge.png" alt="">
<a href="#">Edge</a>
</div>
<div>
<img " src="./styles/images/safari.png" alt="">
<a href="#">Safari</a>
</div>
</div>
<div class="resources">
<p><a href="#">Solutions</a></p>
<p><a href="#">Integrations</a></p>
<p><a href="#">Help</a></p>
<p><a href="#">Time Trackers Comparision</a></p>
<p><a href="#">Blog</a></p>
</div>
<div class="resources">
<p><a href="#">About TMetric</a></p>
<p><a href="#">Terms of Service</a></p>
<p><a href="#">Privacy Policy</a></p>
<p><a href="#">Cookies Policy</a></p>
</div>
</div>
</footer>
</body>
</html>