-
Notifications
You must be signed in to change notification settings - Fork 1
/
features.html
730 lines (674 loc) · 21 KB
/
features.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
<!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>Feather - Clockify™</title>
<link rel="icon" href="https://clockify.me/assets/images/favicon.ico">
<style>
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #333;
text-align: left;
background-color: white;
}
#avi-top{
display: flex;
justify-content: space-evenly;
align-items: center;
height:50px;
width:90%;
margin:auto;
text-align: center;
}
#top-first{
display:flex;
justify-content: space-evenly;
align-items: center;
width:40%;
margin-top:12px;
}
#top-sec{
display: flex;
justify-content: space-evenly;
align-items: center;
width:30%;
margin-top:12px;
}
#top-sec>button{
width:150px;
height:40px;
background-color: white;
border:1px solid #4AA9F4;
border-radius: 5px;
color:#4AA9F4;
}
#top-sec>button:hover{
cursor: pointer;
background-color: #4AA9F4;
color:white;
}
#features{
display:flex;
margin-top:30px;
text-align: center;
justify-content: space-around;
width:80%;
margin:auto;
margin-bottom: 30px;
}
#fe{
text-align: center;
}
#grid1{
display: grid;
grid-template-columns: repeat(3,1fr);
grid-template-rows: repeat(2,auto);
gap:30px;
}
#grid1>button, #grid2>button{
border:transparent;
height:30px;
}
#grid1>button:hover, #grid2>button:hover{
background-color: #03A9F4;
color:white;
}
#grid2{
display: grid;
grid-template-columns: repeat(2,1fr);
grid-template-rows: repeat(2,auto);
gap:30px;
}
#main{
width:75%;
margin:auto;
}
#main-timer{
display: flex;
justify-content: space-around;
margin-bottom: 50px;
}
#main-integration{
display: grid;
gap:30px;
width:80%;
margin: auto;
margin-bottom: 30px;
}
#main-integration>img:hover{
border:1px solid blue
}
#main-git{
width:60%;
margin:auto;
text-align: center;
color:#03A9F4;
margin-bottom: 50px;
}
#people{
display: flex;
justify-content: center;
margin-top: 30px;
}
#footer{
display: flex;
padding:50px;
gap:20px;
justify-content: space-around;
}
#footer>div{
display: grid;
}
#track{
width:100%;
height:50px;
border-radius: 5px;
background-color: #0288D1;
color:white;
}
#track:hover{
cursor: pointer;
}
#acc{
width:40%;
margin: auto;
}
a{
text-decoration: none;
color:#8394B7;
}
</style>
</head>
<body>
<div id="avi-top">
<div id="top-first">
<img src="https://clockify.me/assets/images/clockify-logo.svg" alt="error">
<div><a href="features.html">Features</a></div>
<div><a>Download</a></div>
</div>
<div id="top-sec">
<div><a href="login.html">Log In</a></div>
<button><a href="signup.html">SIGN UP FREE</a> </button>
</div>
</div>
<h1 id="fe">Features</h1>
<div id="features">
<div>
<h5 id="fe">TIMEKEEPING</h5>
<div id="grid1">
<button>Time Tracker</button>
<button>Kiosk</button>
<button>Apps</button>
<button>TimeSheet</button>
<button>Calender</button>
<button>Integrations</button>
</div>
</div>
<div>
<h5 id="fe">REPORTING</h5>
<div id="grid2">
<button>Dashboard</button>
<button>Activity</button>
<button>Reports</button>
<button>Projects</button>
</div>
</div>
<div>
<h5 id="fe">MANAGEMENT</h5>
<div id="grid1">
<button>Team</button>
<button>Time Off</button>
<button>Expenses</button>
<button>Scheduling</button>
<button>Approval</button>
<button>Invoicing</button>
</div>
</div>
</div>
<h1 id="fe">Time tracker</h1>
<p id="fe">Start and stop timer as you work, or enter hours manually.</p>
<div id="main">
<img src="https://clockify.me/assets/images/features/features-tracker-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Timer
</h3>
<p>Track time using a stopwatch.</p>
</div>
<div>
<h3>
Add time
</h3>
<p>Enter and edit hours manually.</p>
</div>
<div>
<h3>
Continue
</h3>
<p>Continue tracking with one click.</p>
</div>
<div>
<h3>
Billable
</h3>
<p>Mark hours as billable.</p>
</div>
</div>
<h1 id="fe">Timesheet</h1>
<p id="fe">Log your weekly activities in less than a minute.</p>
<img src="https://clockify.me/assets/images/features/features-timesheet-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Activities
</h3>
<p>Select activity and enter time.</p>
</div>
<div>
<h3>
Templates
</h3>
<p>Quickly load activities each week.</p>
</div>
<div>
<h3>
Approval
</h3>
<p>Submit and approve timesheets.</p>
</div>
<div>
<h3>
Reminders
</h3>
<p>Reminder for due timesheets.</p>
</div>
</div>
<h1 id="fe">Kiosk</h1>
<p id="fe">Clock in with your PIN code from a shared device.</p>
<img src="https://clockify.me/assets/images/features/features-kiosk-screenshot.png" alt="Error">
<div id="main-timer">
<div>
<h3>
Clock-in
</h3>
<p>Punch in from a shared device.</p>
</div>
<div>
<h3>
Breaks
</h3>
<p>Track employee breaks.</p>
</div>
<div>
<h3>
PIN
</h3>
<p>Sign in with personal code.</p>
</div>
<div>
<h3>
Activity
</h3>
<p>See how much you've worked.</p>
</div>
</div>
<h1 id="fe">Calendar</h1>
<p id="fe">Visualize your time and block out activities.</p>
<img src="https://clockify.me/assets/images/features/features-calendar-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Visualize
</h3>
<p>See how your day looks like.</p>
</div>
<div>
<h3>
Add
</h3>
<p>Block hours with a click.</p>
</div>
<div>
<h3>
Edit
</h3>
<p>Edit blocks by resizing.</p>
</div>
<div>
<h3>
Connect
</h3>
<p>Add events from Outlook/Google.</p>
</div>
</div>
<h1 id="fe">Apps</h1>
<p id="fe">Track time using desktop and mobile app.</p>
<p id="fe" style="color:#03A9F4;"><span>Chrome</span> . <span>Firefox</span> . <span>Windows</span> . <span>Mac</span> . <span>Linux</span> . <span>iOS</span> . <span>Android</span></p>
<!-- button left -->
<img src="https://clockify.me/assets/images/features/features-apps-screenshot.png" alt="Error">
<h1 id="fe">Integrations</h1>
<p id="fe">Connect Clockify with other apps.</p>
<div id="main-integration">
<img src="https://clockify.me/assets/images/integrations/time-tracking-integrations-quickbooks.png" alt="Error">
<img src="https://clockify.me/assets/images/integrations/time-tracking-integrations-trello.png" alt="Error">
<img src="https://clockify.me/assets/images/integrations/time-tracking-integrations-asana.png" alt="Error">
<img src="https://clockify.me/assets/images/integrations/time-tracking-integrations-jira.png" alt="Error">
</div>
<div id="main-git">
<img src="https://clockify.me/assets/images/multiple-clockify-integrations.svg" alt="Error">
<p><a href="#">See all integration (80+)</a></p>
<p><a href="#">API/Webhooks</a></p>
</div>
<h1 id="fe">Dashboard</h1>
<p id="fe">See where you spend time and what your team is working on.</p>
<img src="https://clockify.me/assets/images/features/features-dashboard-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Activities
</h3>
<p>See where you spend most time.</p>
</div>
<div>
<h3>
Charts
</h3>
<p>All time and money at a glance.</p>
</div>
<div>
<h3>
Breakdowns
</h3>
<p>See what your team worked on.</p>
</div>
<div>
<h3>
Status
</h3>
<p>See who currently works on what.</p>
</div>
</div>
<h1 id="fe">Reports</h1>
<p id="fe">See who worked on what, how much money you earn, review your team's time, and export the data.</p>
<img src="https://clockify.me/assets/images/features/features-reports-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Breakdowns
</h3>
<p>Overview by: day, activity, user...</p>
</div>
<div>
<h3>
Filters
</h3>
<p>Drill down into your data.</p>
</div>
<div>
<h3>
Share
</h3>
<p>Share reports with clients via link.</p>
</div>
<div>
<h3>
Export
</h3>
<p>Download PDF, CSV, or Excel.</p>
</div>
</div>
<h1 id="fe">Activity</h1>
<p id="fe">See visited sites and what you've worked on.</p>
<img src="https://clockify.me/assets/images/features/features-locations-screenshot.png" alt="Error">
<div id="main-timer">
<div>
<h3>
Locations
</h3>
<p>Track GPS location.</p>
</div>
<div>
<h3>
Routes
</h3>
<p>See all visited locations.</p>
</div>
<div>
<h3>
Screenshots
</h3>
<p>Record what you've worked on.</p>
</div>
<div>
<h3>
Privacy
</h3>
<p>Control what data is gathered.</p>
</div>
</div>
<h1 id="fe">Projects</h1>
<p id="fe">Track time on projects, and keep an eye on progress and budget.</p>
<img src="https://clockify.me/assets/images/features/features-projects-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Tasks
</h3>
<p>Categorize by job type.</p>
</div>
<div>
<h3>
Rates
</h3>
<p>Multiple levels of hourly rates.</p>
</div>
<div>
<h3>
Budget
</h3>
<p>Set budget or time estimate.</p>
</div>
<div>
<h3>
Alerts
</h3>
<p>Get notified when close to budget.</p>
</div>
</div>
<h1 id="fe">Team</h1>
<p id="fe">Invite your team to track time in your account.</p>
<img src="https://clockify.me/assets/images/features/features-team-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Invite team
</h3>
<p>Unlimited number of users, free.</p>
</div>
<div>
<h3>
Rates
</h3>
<p>Set per user hourly rates.</p>
</div>
<div>
<h3>
Manager
</h3>
<p>Give additional permissions.</p>
</div>
<div>
<h3>
Groups
</h3>
<p>Manage access using groups.</p>
</div>
</div>
<h1 id="fe">Scheduling</h1>
<p id="fe">Plan projects and visualize team's capacity.</p>
<img src="https://clockify.me/assets/images/features/features-scheduling-projects-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Milestones
</h3>
<p>Visualize projects on timeline.</p>
</div>
<div>
<h3>
Assignments
</h3>
<p>Decide who works on what.</p>
</div>
<div>
<h3>
Capacity
</h3>
<p>See who can take on more work.</p>
</div>
<div>
<h3>
Publish
</h3>
<p>Let others see their assignments.</p>
</div>
</div>
<h1 id="fe">Time off</h1>
<p id="fe">Track your team's holidays and time off requests.</p>
<img src="https://clockify.me/assets/images/features/features-timeoff-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Policies
</h3>
<p>Create time off policies.</p>
</div>
<div>
<h3>
Holidays
</h3>
<p>Define holidays for paid leaves.</p>
</div>
<div>
<h3>
Requests
</h3>
<p>Request and approve leaves.</p>
</div>
<div>
<h3>
Balance
</h3>
<p>Track available days/hours.</p>
</div>
</div>
<h1 id="fe">Approval</h1>
<p id="fe">Officially approve your team's timesheets and expenses.</p>
<img src="https://clockify.me/assets/images/features/features-approval-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Submit
</h3>
<p>Submit timesheets with one click.</p>
</div>
<div>
<h3>
Reminders
</h3>
<p>Send late timesheet reminders.</p>
</div>
<div>
<h3>
Immutable
</h3>
<p>Prevent further changes.</p>
</div>
<div>
<h3>
History
</h3>
<p>See all requests in one place.</p>
</div>
</div>
<h1 id="fe">Expenses</h1>
<p id="fe">Record fixed-fees and other project expenses.</p>
<img src="https://clockify.me/assets/images/features/features-expenses-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Track
</h3>
<p>Record by sum or unit.</p>
</div>
<div>
<h3>
Types
</h3>
<p>Define expense types.</p>
</div>
<div>
<h3>
Receipts
</h3>
<p>Attach expense receipts.</p>
</div>
<div>
<h3>
Report
</h3>
<p>Analyze and export expenses.</p>
</div>
</div>
<h1 id="fe">Invoicing</h1>
<p id="fe">Issue invoices based on tracked time, expenses, and hourly rates.</p>
<img src="https://clockify.me/assets/images/features/features-invoicing-screenshot.svg" alt="Error">
<div id="main-timer">
<div>
<h3>
Create
</h3>
<p>Import time and edit invoices.</p>
</div>
<div>
<h3>
PDF
</h3>
<p>Download and send to client.</p>
</div>
<div>
<h3>
Customize
</h3>
<p>Add company logo and notes.</p>
</div>
<div>
<h3>
Expenses
</h3>
<p>Record and invoice fixed fees.</p>
</div>
</div>
<h1 id="fe">Start tracking time with Clockify</h1>
<p id="fe">24/7 Support <span> . </span> Cancel Anytime <span> . </span> Free Forever </p>
<div id="acc">
<button id="track" style="margin-top: 40px ;">CREATE FREE ACCOUNT</button>
</div>
<div id="people">
<img src="https://clockify.me/assets/images/signed-up-icon.svg" alt="error">
<a href="#">136,122 people signed up last month</a>
</div>
</div>
<div id="footer">
<div>
<img src="https://clockify.me/assets/images/clockify-logo.svg" alt="Error">
<p>The world's leading time tracker and timesheet software for teams</p>
<h4>SIGN UP FREE</h4>
<h4>LOG IN</h4>
</div>
<div>
<h4>PRODUCT</h4>
<a href="#">Features</a>
<a href="#">Download</a>
<a href="#">Integrations</a>
<a href="#">Upgrade</a>
<a href="#">API</a>
</div>
<div>
<h4>SOLUTION</h4>
<a href="#">Time clock</a>
<a href="#">Timecard calculator</a>
<a href="#">Timesheet</a>
<a href="#">Reporting</a>
<a href="#">Scheduling</a>
</div>
<div>
<h4>COMPANY</h4>
<a href="#">About Us</a>
<a href="#">Customers</a>
<p>WE ALSO MAKE</p>
<a href="#">Pumble</a>
<a href="#">Plaky</a>
</div>
<div>
<h4>SUPPORT</h4>
<a href="#">Help</a>
<a href="#">Tutorials</a>
<a href="#">Resources</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</div>
</div>
</body>
</html>