-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprice.html
750 lines (695 loc) · 31.4 KB
/
price.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
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing | My Hours</title>
<link rel="stylesheet" href="price.css">
</head>
<body>
<!-- navbar start -->
<!-- navbar start -->
<div id="navbar">
<div class="logo">
<img src="https://assets-global.website-files.com/64148069036e35d5954d1323/64148069036e352ca84d1761_myhours-logo.svg"
alt="logo">
</div>
<div class="nav-item">
<div class="nav-item-2">
<a href="./how.html">How it works</a>
<a href="./price.html">Pricing</a>
<div class="dropdowns">
<div class="sp">
<a class="sp-nav-2" href="#">Resources</a>
</div>
<div class="dropdown-contents">
<a href="https://myhours.com/use-cases">Use cases</a>
<a href="https://myhours.com/support">Help center</a>
<a href="https://myhours.com/security">Security & privacy</a>
<a href="https://myhours.com/customers">Customer reviews</a>
<a href="https://myhours.com/about">About My Hours</a>
</div>
</div>
<a id="logout" href="#">Sign out</a>
<a href="https://app.myhours.com/#/signup/trial/1"><button class="btn-1s">Get My Hours
Free</button></a>
</div>
</div>
</div>
<!-- navbar end -->
<!-- responsive navbar -->
<div class="navbar">
<div class="menu-toggle" id="mobile-menu">
<span class="bar">
<img src="https://assets-global.website-files.com/64148069036e35d5954d1323/64148069036e352ca84d1761_myhours-logo.svg"
alt="">
<i class="fa-solid fa-bars"></i>
</span>
</div>
<ul class="nav-list">
<li><a href="./how.html">How it works</a></li>
<li><a href="./price.html">Pricing</a></li>
<div class="dropdown">
<div class="sps">
<a id="toggleElement" class="sp-nav-2s" href="#">Resources</a>
</div>
<div id="elementToToggle" class="dropdown-content">
<a href="https://myhours.com/use-cases">Use cases</a>
<a href="https://myhours.com/support">Help center</a>
<a href="https://myhours.com/security">Security & privacy</a>
<a href="https://myhours.com/customers">Customer reviews</a>
<a href="https://myhours.com/about">About My Hours</a>
</div>
</div>
<li><a id="log" href="#">Sign out</a></li>
<div class="button">
<a
href="https://login.myhours.com/account/signup?AppId=F45FF764-794C-4652-972E-1287F90C7B81&tier=Trial"><button
class="btn-12">Get My Hours Free</button></a>
</div>
</ul>
</div>
<!-- responsive end -->
<div class="first-container">
<h1>Pick your plan</h1>
<h2>Track time on projects with your team.</h2>
</div>
<div class="first-cont">
<div class="child-1">
<h3>Free</h3>
<p>For individuals or teams just getting started with time tracking.</p>
<div class="flex-parent">
<div class="child-flex-1">$</div>
<div class="child-flex-2"> 0</div>
</div>
<ul>
<li>Unlimited team members & projects</li>
<li>Track time on projects & tasks</li>
<li>Set billable rates</li>
<li>Generate detailed reports</li>
</ul>
<div class="button-1">
<a href="https://login.myhours.com/account/signup?AppId=F45FF764-794C-4652-972E-1287F90C7B81&tier=Free"><button
class="btn-2">Select</button></a>
</div>
</div>
<div class="child-1">
<h3>Pro</h3>
<p>For freelancers and teams actively managing their time.</p>
<div class="main-parent">
<div class="flex-parent">
<div class="child-flex-1">$</div>
<div class="child-flex-2"> 8</div>
</div>
<div class="flex-parent-2">
<div>- per active team member, per month billed
<br>
annually
</div>
<br>
<div> $9 billed monthly</div>
</div>
</div>
<ul>
<li><em>Everything in free PLUS</em></li>
<li>Priority support</li>
<li>Generate client invoices</li>
<li>Add & edit logs on behalf of your team</li>
<li>Approval workflow with Audit log</li>
<li>Extra features…</li>
</ul>
<div class="button-2">
<a
href="https://login.myhours.com/account/signup?AppId=F45FF764-794C-4652-972E-1287F90C7B81&tier=Trial"><button
class="btn-3">14 day free trial</button></a>
</div>
</div>
</div>
<div class="price-table">
<table class="pricing-table">
<thead>
<tr>
<th>Track</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Timer or add manually</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Timesheet - weekly tracking</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Timer - daily tracking</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Timeline view</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Favorites</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Expenses</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Detailed description and attachments</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Daily tracking reminder (mobile app)</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Bulk edit or delete logs</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td id="last-tr">Track custom fields (numeric)</td>
<td id="last-tr"> </td>
<td id="last-tr"> <i class="fa-solid fa-check"></i></td>
</tr>
</tbody>
<!-- second table -->
<thead>
<tr>
<th>Organize</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Unlimited projects, tasks and clients</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Task and project templates</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Task and project descriptions</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Group tasks and mark as done</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Group tasks and mark as done</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Budget hours, billable or cost amounts</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Budget alerts to email</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Monthly budget</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Task budgets or estimates</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td id="last-tr">Assign tasks to team members</td>
<td id="last-tr"> </td>
<td id="last-tr"> <i class="fa-solid fa-check"></i></td>
</tr>
</tbody>
<!-- Third table -->
<thead>
<tr>
<th>Billing</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Billable rate per project</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Billable rate per tasks or team member</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Labor costs (Team costs)</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Calculate profit & loss</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Auto-round billable time</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td id="last-tr">Invoicing</td>
<td id="last-tr"> </td>
<td id="last-tr"> <i class="fa-solid fa-check"></i></td>
</tr>
</tbody>
<!-- fourth table -->
<thead>
<tr>
<th>Report</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Dashboard</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Customize a detailed report (Activity)</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Download to PDF, export to XLS</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Send reports to Email</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Timesheet report</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Team pivot report</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Economy report</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Download & customize reports in Excel</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Task budgets or estimates</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td id="last-tr">Own logo on PDF reports</td>
<td id="last-tr"> </td>
<td id="last-tr"> <i class="fa-solid fa-check"></i></td>
</tr>
</tbody>
<!-- 5th table -->
<thead>
<tr>
<th>Team</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Unlimited team members</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Role: Administrator</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Role: Normal member</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Role: Project manager</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Group members into Teams</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Hide billing and cost details</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Require project and task input</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Approval workflow</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Add, edit or delete team's logs</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Auto-lock time logs</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Tracking reminders</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Audit log report</td>
<td> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td id="last-tr">Track team's capacity</td>
<td id="last-tr"> </td>
<td id="last-tr"> <i class="fa-solid fa-check"></i></td>
</tr>
</tbody>
<!-- last table -->
<thead>
<tr>
<th>Integrations & Apps</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Import timesheets, projects and clients</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Mobile apps</td>
<td><i class="fa-solid fa-check"></i> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>API access</td>
<td> <i class="fa-solid fa-check"></i></td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td>Zapier integration</td>
<td><i class="fa-solid fa-check"></i> </td>
<td> <i class="fa-solid fa-check"></i></td>
</tr>
<tr>
<td id="last-tr">Quickbooks native integration</td>
<td id="last-tr"> </td>
<td id="last-tr"> <i class="fa-solid fa-check"></i></td>
</tr>
</tbody>
</table>
</div>
<div class="container-3">
<h2>Frequently Asked Questions</h2>
<div class="accordion">
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">Will I be charged after the 14 day
trial? <i class="fa-solid fa-chevron-down"></i> </div>
<div class="accordion-content">
<p>No, you don't have to enter your credit card details to start your Free trial. When you decide to
continue using My Hours, enter your payment details and you'll be automatically charged each
period (monthly or annually). </p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">Can I switch to a Free account after the
Pro Trial ends? <i class="fa-solid fa-chevron-down"></i></div>
<div class="accordion-content">
<p>Sure! You'll always have a choice between staying on the Pro version that comes with a
subscription or downgrading to a Free account. Just keep in mind that you will lose access to
Pro features. </p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">What if we need more than 14 days to test
the Pro edition? <i class="fa-solid fa-chevron-down"></i></div>
<div class="accordion-content">
<p>Just send us an email to support@myhours.com and we'll provide you with an extension.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">What's included in the Pro Trial? <i
class="fa-solid fa-chevron-down"></i></div>
<div class="accordion-content">
<p>Pro Trial comes with every feature that My Hours offers. If you have trouble finding a
functionality you need, send us an email. </p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">What kind of payment do you accept? <i
class="fa-solid fa-chevron-down"></i></div>
<div class="accordion-content">
<p>We accept Visa, MasterCard, American Express, Discover, and PayPal. Additional payment options,
including wire transfer, are available for larger teams with 50+ members and an annual
payment. </p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">Do you offer discounts? <i
class="fa-solid fa-chevron-down"></i></div>
<div class="accordion-content">
<p>We offer discounts to non-profit companies and larger teams.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">What type of support is included? <i
class="fa-solid fa-chevron-down"></i></div>
<div class="accordion-content">
<p>All My Hours users receive email and live chat support, while Pro customers have priority. Our
typical response time is less than 12 hours. Teams with 20+ members can sign up for a free demo
call here.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">Can I get a refund? <i
class="fa-solid fa-chevron-down"></i></div>
<div class="accordion-content">
<p>We issue a refund when My Hours account with active subscription was not being used for a few
months.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">Can I deactivate inactive team members? <i
class="fa-solid fa-chevron-down"></i>
</div>
<div class="accordion-content">
<p>You can archive inactive team members while keeping their data for reporting. We do not charge
for archived team members.</p>
</div>
</div>
</div>
</div>
<!-- container 3 end -->
<div class="last-bg">
<div id="first-bg">
<p> <strong>“</strong> I have tested similar time tracking apps but they all have limits. My Hours is
without a
doubt the most important tool I use in my business. <strong>”</strong> </p>
</div>
<div class="flex-bg-1">
<div class="child-flex-bg-1">- Kevin from St. Petersburg, FL, USA</div>
<div><a href="https://myhours.com/customers">Read more reviews ></a></div>
</div>
<div class="flex-bg-2">
<div>
<h5><strong>MEMBERS</strong></h5>
<div>250<span>k</span></div>
</div>
<div>
<h5><strong>LOGGED HOURS</strong></h5>
<div>1.6<span>b</span></div>
</div>
<div>
<h5><strong>AVERAGE RATING</strong></h5>
<div>4.7<span>/5</span></div>
</div>
</div>
</div>
<!-- last elem -->
<div class="container-7">
<h2>Have questions? We're here</h2>
<p>It's always nice to have someone to talk to when facing new software. Get in touch and we'll try our best
to help you out.</p>
<div class="main-tick-items">
<div class="tick-items">
<div class="tick-items-child-img">
<img src="https://assets-global.website-files.com/64148069036e35d5954d1323/64148069036e355d534d17db_vectorpaint%20(1).svg"
alt="">
<a href="https://myhours.com/support">EMAIL & LIVE CHAT</a>
</div>
<div class="tick-items-child-img">
<img src="https://assets-global.website-files.com/64148069036e35d5954d1323/64148069036e355d534d17db_vectorpaint%20(1).svg"
alt="">
<a href="https://myhours.com/support">TRAINING FOR TEAMS
</a>
</div>
<div class="tick-items-child-img">
<img src="https://assets-global.website-files.com/64148069036e35d5954d1323/64148069036e355d534d17db_vectorpaint%20(1).svg"
alt="">
<a href="https://help.myhours.com/en/?_ga=2.156340603.1571985284.1585041754-1222347599.1584543038">KNOWLEDGE
BASE</a>
</div>
</div>
</div>
</div>
<!-- container end -->
<!-- container-8 -->
<div class="container-8">
<h2>Waste no more time,
<br>
jump right in!
</h2>
<a class="btn-4"
href="https://login.myhours.com/account/signup?AppId=F45FF764-794C-4652-972E-1287F90C7B81&tier=Trial"><strong>Get
Started - It's Free</strong></a>
<div>
My Hours is Free to use for teams of any size.
<br>
<a href="https://myhours.com/pricing">Pro paid plan </a>comes with additional features like invoicing, admin
controls and priority
support.
</div>
</div>
<!-- container end -->
<!-- footer start -->
<div class="bg-6">
<div class="grid-5">
<div class="img-logo">
<img src="https://assets-global.website-files.com/64148069036e35d5954d1323/64148069036e351c984d171e_Logo-300px.png"
alt="">
<div>© 2023 My Hours.
<br>
All rights reserved.
</div>
</div>
<div class="mult-ul">
<ul>
<li><strong>Product</strong></li>
<li> <a href="https://allhours.com/"> How it works </a> </li>
<li><a href="https://myhours.com/mobile-time-tracking-app">Mobile app</a></li>
<li><a href="https://myhours.com/free-chrome-time-tracking-browser-extension">Browser extension</a>
</li>
<li><a href="https://myhours.com/timesheet-ai-chatbot">AI Chatbot Assistant</a></li>
<li><a href="https://myhours.com/use-cases">Use case collection</a></li>
<li><a href="https://myhours.com/pricing">Pricing</a></li>
<li><a href="https://myhours.com/articles">Articles</a></li>
<li><a href="https://help.myhours.com/en/">Guides</a></li>
<li><a href="https://myhours.com/customers">Customer Reviews</a></li>
<li><a href="https://app.myhours.com/#/signup/trial/1">Start Free</a></li>
</ul>
</div>
<div class="mult-ul">
<ul>
<li><strong>Resources</strong></li>
<li> <a href="https://myhours.com/time-tracking-library"> Time Tracking Library </a> </li>
<li><a href="https://myhours.com/about">About</a></li>
<li><a href="https://myhours.com/legal/terms-of-use">Terms of Use</a></li>
<li><a href="https://myhours.com/sitemap">Sitemap</a></li>
<li><a href="https://myhours.com/free-timesheet-templates-excel-word-sheets">Free Timesheet
Templates</a></li>
<li><a href="https://myhours.com/top-time-management-apps-2023">Time Management Apps</a></li>
<li><a href="https://myhours.com/best-time-tracking-apps">Best Time Tracking Apps for 2023</a></li>
<li><a href="https://myhours.com/articles/time-management-skills-techniques-strategies-list">Time
Management Skills, Techniques and Strategies</a></li>
<li><a href="https://myhours.com/free-time-card-calculator">Free Time Card Calculator</a></li>
</ul>
</div>
<div class="mult-ul">
<ul>
<li><strong>Use Cases</strong></li>
<li><a href="https://myhours.com/project-billing">Project billing</a></li>
<li><a href="https://myhours.com/time-reports-and-project-analytics">Time reports and Project
analytics</a></li>
<li><a href="https://myhours.com/attendance-absence-tracking">Attendance and Absence tracking</a>
</li>
<li><a href="https://myhours.com/expense-tracking">Expense tracking</a></li>
<li><a href="https://myhours.com/calculating-project-profitability">Calculating project
profitability</a></li>
<li><a href="https://myhours.com/timesheet-time-tracking">Timesheet time tracking</a></li>
</ul>
</div>
<div class="mult-ul">
<ul>
<li><strong>Integrations</strong></li>
<li><a href="https://myhours.com/quickbooks-time-tracking-integration">QuickBooks</a></li>
<li><a href="https://myhours.com/integrations-zapier">Zapier</a></li>
<li><a href="https://documenter.getpostman.com/view/8879268/TVmV4YYU#intro">API Documentation</a>
</li>
</ul>
</div>
<div class="mult-ul">
<ul>
<li><strong>Social</strong></li>
<li><a href="https://www.facebook.com/myHoursTeam/">Facebook</a></li>
<li><a href="https://twitter.com/MyHoursTeam">Twitter</a></li>
</ul>
</div>
</div>
<div class="last-elem">
Looking for employee attendance and absence tracking? Visit
<a href="https://allhours.com/"><strong>All Hours.</strong></a>
</div>
</div>
</body>
</html>
<script src="https://kit.fontawesome.com/b177fa4a5d.js" crossorigin="anonymous"></script>
<script src="price.js"></script>