-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1239 lines (1214 loc) · 47.2 KB
/
index.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
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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>Home page</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" >
<link rel="stylesheet" href="./index/jquery/owl.carousel.css">
<link rel="stylesheet" href="./index/jquery/owl.theme.green.css">
<link rel="stylesheet" href="./index/style/style.css" />
<link rel="stylesheet" href="./index/style/style1.css" />
<link rel="stylesheet" href="./index/style/footer.css" />
<link rel="stylesheet" href="./navbar/navbar.css">
<link rel="stylesheet" href="./navbar/index.css">
<script src="./index/jquery/jquery.min.js"></script>
<script src="./index/jquery/owl.carousel.min.js"></script>
</head>
<body>
<div id="Navbar"></div>
<div class="hf-home__banner version_2">
<div class="container">
<div class="hf-home__banner-wrap">
<div class="flex-parent align-center">
<div class="_65-col-box">
<h1 class="hf-body__heading-large hf-body__heading-bold">
Get More Done with
<br />
a Modern Support Stack
</h1>
<p class="hf-body__para hf-body__text-1 scaled-content-box-2">
Deliver outstanding support and achieve new goals with HappyFox.
</p>
<div class="signup-banner__wrap">
<div class="signup-banner">
<input
class="helpdesk-email"
type="email"
id="email"
name="signup-email 2"
placeholder="Enter your work email"
/>
<button
type="button"
class="signup-banner__button"
id="prefooterButton"
>
Get a Demo
</button>
</div>
<p id="error" class="signup-banner__error slide-down"></p>
<p class="signup-straptxt">
<a
href="/privacy-policy/"
class="signup-straptxt__link active"
>
By submitting, you agree to HappyFox’s Privacy Policy.
</a>
</p>
</div>
</div>
</div>
<div class="hf-home__video-wrap">
<div class="container" id="playVideo">
<p class="hf-body__para-heading">
<img
src="//assets.www.happyfox.com/v2/images/version_2_play.svg"
alt="play button"
/>
Watch the video
</p>
<div class="hf-home__video">
<div id="player">
<a
id="play-btn"
href="https://www.youtube.com/watch?v=CGgPw0MSF3M"
target="_blank"
rel="noopener nofollow noreferrer"
>
<img
class="ls-is-cached lazyloaded"
src="//assets.www.happyfox.com/v2/images/ytube_play_button.svg"
alt="youtube play button"
/>
</a>
<!-- <iframe
id="iframe"
src="https://www.youtube.com/embed/cD0FfdHdNis?rel=0&showinfo=0&autoplay=1"
frameborder="0"
allow="autoplay; encrypted-media"
allowfullscreen=""
title="HappyFox Help Desk Demo"
></iframe> -->
</div>
</div>
</div>
</div>
<div class="hf-home__award-video">
<div class="text-center">
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/pcmag-new-2021.svg?r=1661335984892"
width="122"
height="63"
alt="PCMAG"
/>
<h2>Best Help Desk Software for 6 years in a row.</h2>
<p style="color: #929292; max-width: 485px; margin: 0 auto">
All-in-one
<a href="/help-desk-ticketing-system/" class="hf-subtle__link"
>help desk ticketing system</a
>
that provides faster and better support for your customers.
</p>
<div class="hf-usecase__btn-wrap">
<a href="/ticket-support-system/" class="hf-demo__btn outlined">
Take a tour
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="brand-logos ptb-100">
<div class="container">
<div class="row">
<div class="col-md-12">
<p class="hf-body__para-heading hf-body__text-1">
Trusted by Industry-Leading Companies
</p>
<div class="hf-customers__list">
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/owler-logo.png"
alt="owler"
width="150"
height="28.5"
/>
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/whirlpool.svg"
width="150"
height="75"
alt="whirlpool"
/>
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/jabra.svg"
width="150"
height="76"
alt="jabra"
/>
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/leap-frog.svg"
alt="Leap Frog"
width="100"
height="98.75"
style="max-width: 100px"
/>
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/harbour.svg "
alt="Kindling"
width="150"
height="25"
/>
</div>
</div>
</div>
</div>
</div>
<div class="customer-support">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>Provide Exceptional</h3>
<h4>Customer Support. Everyday.</h4>
<p class="support-text">
Meet HappyFox, a practical help desk and customer support software
solution. Reduce chaos and bring order to your support process
with a robust support ticket system, self-service knowledge base
and community forums.
</p>
<div class="support-slider" id="tabSlider">
<div class="hometab-slider">
<ul
class="hometab-slider__list owl-dots"
id="carousel-custom-dots"
>
<li class="hometab-item active">
<div class="hometab-link" id="tabOne">
Keep everything together
</div>
</li>
<li class="hometab-item owl-dot">
<div class="hometab-link" id="tabTwo">Stay in Control</div>
</li>
<li class="hometab-item owl-dot">
<div class="hometab-link" id="tabThree">
Get things done, fast
</div>
</li>
</ul>
</div>
<div
class="hometab-content__wrap owl-carousel owl-theme owl-loaded owl-drag"
id="tabHomeCarousel"
>
<div class="owl-stage-outer">
<div
class="owl-stage"
style="
transform: translate3d(-1400px, 0px, 0px);
transition: all 0s ease 0s;
width: 4900px;
"
>
<div
class="owl-item cloned"
style="width: 690px; margin-right: 10px"
>
<div class="hometab-content iten" data-title="tabTwo">
<div class="slider-screen">
<img
src="//assets.www.happyfox.com/v2/images/stay_control.svg"
width="533"
height="226"
alt="HappyFox feature - Stay in Control"
/>
</div>
<div class="slider-content">
<h5>
“We LOVE HappyFox. It has changed our work lives.
Support requests no longer fall through the cracks
and get lost in an email or some random
spreadsheet.”
</h5>
<p>Bill Bates</p>
<p>
Director of Technology - Pinewood Private School
</p>
</div>
</div>
</div>
<div
class="owl-item cloned"
style="width: 690px; margin-right: 10px"
>
<div class="hometab-content item" data-title="tabThree">
<div class="slider-screen">
<img
src="//assets.www.happyfox.com/v2/images/things_fast.svg"
width="533"
height="306"
alt="HappyFox feature - get things fast"
/>
</div>
<div class="slider-content">
<h5>
“With 95% of the support tickets being responded to
within 2 hours. Our customers are impressed!”
</h5>
<p>James Powell</p>
<p>
Director & IT Business Consultant - FatCat IT
</p>
</div>
</div>
</div>
<div
class="owl-item active"
style="width: 690px; margin-right: 10px"
>
<div class="hometab-content item" data-title="tabOne">
<div class="slider-screen">
<img
src="//assets.www.happyfox.com/v2/images/keep_everything.svg"
width="533"
height="289"
alt="HappyFox feature to keep evrything together"
/>
</div>
<div class="slider-content">
<h5>
“We consider HappyFox a one-stop shop for help desk
software to support our global customer network”
</h5>
<p>Martin Hartvigsen</p>
<p>Director, Global Technical Support at Jabra GN</p>
</div>
</div>
</div>
<div
class="owl-item"
style="width: 690px; margin-right: 10px"
>
<div class="hometab-content iten" data-title="tabTwo">
<div class="slider-screen">
<img
src="//assets.www.happyfox.com/v2/images/stay_control.svg"
width="533"
height="226"
alt="HappyFox feature - Stay in Control"
/>
</div>
<div class="slider-content">
<h5>
“We LOVE HappyFox. It has changed our work lives.
Support requests no longer fall through the cracks
and get lost in an email or some random
spreadsheet.”
</h5>
<p>Bill Bates</p>
<p>
Director of Technology - Pinewood Private School
</p>
</div>
</div>
</div>
<div
class="owl-item"
style="width: 690px; margin-right: 10px"
>
<div class="hometab-content item" data-title="tabThree">
<div class="slider-screen">
<img
src="//assets.www.happyfox.com/v2/images/things_fast.svg"
width="533"
height="306"
alt="HappyFox feature - get things fast"
/>
</div>
<div class="slider-content">
<h5>
“With 95% of the support tickets being responded to
within 2 hours. Our customers are impressed!”
</h5>
<p>James Powell</p>
<p>
Director & IT Business Consultant - FatCat IT
</p>
</div>
</div>
</div>
<div
class="owl-item cloned"
style="width: 690px; margin-right: 10px"
>
<div class="hometab-content item" data-title="tabOne">
<div class="slider-screen">
<img
src="//assets.www.happyfox.com/v2/images/keep_everything.svg"
width="533"
height="289"
alt="HappyFox feature to keep evrything together"
/>
</div>
<div class="slider-content">
<h5>
“We consider HappyFox a one-stop shop for help desk
software to support our global customer network”
</h5>
<p>Martin Hartvigsen</p>
<p>Director, Global Technical Support at Jabra GN</p>
</div>
</div>
</div>
<div
class="owl-item cloned"
style="width: 690px; margin-right: 10px"
>
<div class="hometab-content iten" data-title="tabTwo">
<div class="slider-screen">
<img
src="//assets.www.happyfox.com/v2/images/stay_control.svg"
width="533"
height="226"
alt="HappyFox feature - Stay in Control"
/>
</div>
<div class="slider-content">
<h5>
“We LOVE HappyFox. It has changed our work lives.
Support requests no longer fall through the cracks
and get lost in an email or some random
spreadsheet.”
</h5>
<p>Bill Bates</p>
<p>
Director of Technology - Pinewood Private School
</p>
</div>
</div>
</div>
</div>
</div>
<div class="owl-nav">
<button type="button" role="presentation" class="owl-prev">
<span aria-label="Previous"></span></button
><button type="button" role="presentation" class="owl-next">
<span aria-label="Next"></span>
</button>
</div>
</div>
</div>
<div class="features-buttons">
<a href="/customer-stories/">
<button class="all-use-cases">
View all customer stories
</button></a
>
<a href="">
<button class="demo-button">Get a Demo</button>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="roi-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>Align your goals.</h3>
<h4>Improve your ROI</h4>
<div class="roi-lists">
<div class="list-one">
<div class="list-icon">
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/handle-icon.svg"
alt="Icon"
width="30"
height="30"
/>
</div>
<div class="list-text">
<h5>Handle all inbound requests in one ticketing system</h5>
<p>
Convert email, phone, chat and web requests into tickets and
keep them organized.
</p>
</div>
</div>
<div class="list-one">
<div class="list-icon">
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/outsource-icon.svg"
alt="Icon"
width="32"
height="30"
/>
</div>
<div class="list-text">
<h5>Ease your day with a smart help desk software</h5>
<p>
Outsource complex and redundant workflows to a powerful
smart rules engine.
</p>
</div>
</div>
<div class="list-one">
<div class="list-icon">
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/analyse-icon.svg"
alt="Icon"
width="30"
height="30"
/>
</div>
<div class="list-text">
<h5>Analyse help desk metrics & create solid actions</h5>
<p>
A ticketing system that can crunch your support process
data.
</p>
</div>
</div>
<div class="list-one">
<div class="list-icon">
<img
class="lazyload"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/setting-icon.svg"
alt="Icon"
width="30"
height="30"
/>
</div>
<div class="list-text">
<h5>Tailor your support ticket system in all forms</h5>
<p>
Create your own custom fields, workflows & personalize
the support experience.
</p>
</div>
</div>
</div>
<div class="roi-buttons">
<a href="/ticket-support-system/"
><button class="all-features">View all features</button></a
>
<a href=""
><button class="demo-button">Get a Demo</button></a
>
</div>
</div>
</div>
</div>
</div>
<div class="helpdesk-features">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>Help Desk Software for today's</h3>
<h4>fast-changing global businesses</h4>
<div class="hd-features">
<a
href="/customer-service-software/"
class="feature-list feature-one"
>
<div>
<div class="list-icon">
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/support-icon.svg"
alt="Icon"
width="30"
height="30"
/>
</div>
<div class="list-text">
<h5>
For customer support
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/external-link-icon.svg"
width="14"
height="14"
alt="Icon"
/>
</h5>
<p>
A customer support tool that helps redefine your customer
service and ensure customer loyalty.
</p>
</div>
</div>
</a>
<a
href="/solution/help-desk-software-for-it-services/"
class="feature-list feature-two"
>
<div>
<div class="list-icon">
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/opration-icon.svg"
alt="Icon"
width="30"
height="30"
/>
</div>
<div class="list-text">
<h5>
For IT operations<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/external-link-icon.svg"
width="14"
height="14"
alt="Icon"
/>
</h5>
<p>
Customer support tool that helps IT and ITES companies
deliver outstanding support.
</p>
</div>
</div>
</a>
<a
href="/solution/human-resource-help-desk-software/"
class="feature-list feature-three"
>
<div>
<div class="list-icon">
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/discuss-icon.svg"
alt="Icon"
width="30"
height="30"
/>
</div>
<div class="list-text">
<h5>
For HR & Marketing<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/external-link-icon.svg"
width="14"
height="14"
alt="Icon"
/>
</h5>
<p>
Track and manage issues from your customers and provide
speedy resolutions.
</p>
</div>
</div>
</a>
<a href="/ticket-support-system/" class="feature-list">
<div>
<div class="list-icon">
<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/team-icon.svg"
alt="Icon"
width="30"
height="30"
/>
</div>
<div class="list-text">
<h5>
For all teams<img
class="ls-is-cached lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/external-link-icon.svg"
width="14"
height="14"
alt="Icon"
/>
</h5>
<p>
All-in-one help desk ticketing system that provides faster
and better support for your customers.
</p>
</div>
</div>
</a>
</div>
<div class="features-buttons">
<a href=""
><button class="demo-button">Get a Demo</button></a
>
</div>
</div>
</div>
</div>
</div>
<div class="happyfox-apps">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>A happy roof that can accommodate</h3>
<h4>all your favorite business apps.</h4>
<div class="apps-list">
<div class="row-list">
<ul>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/google-icon.svg"
alt="Icon"
width="40"
height="40"
/>
</li>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/salesforce-icon.svg"
alt="Icon"
width="57"
height="40"
/>
</li>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/app3-icon.svg"
alt="Icon"
width="80"
height="29"
/>
</li>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/ring-icon.svg"
alt="Icon"
width="81"
height="32"
/>
</li>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/fb-icon.svg"
alt="Icon"
width="20"
height="40"
/>
</li>
</ul>
<ul>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/twitter-icon.svg"
alt="Icon"
width="43"
height="35"
/>
</li>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/magento-icon.svg"
alt="Icon"
width="35"
height="40"
/>
</li>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/ms-dynamics-icon.svg"
alt="Icon"
width="25"
height="40"
/>
</li>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/github-icon.svg"
alt="Icon"
width="41"
height="40"
/>
</li>
<li class="abc">
<img
class="lazyloaded"
loading="lazy"
src="//assets.www.happyfox.com/v2/images/shopify-icon.svg"
alt="Icon"
width="36"
height="40"
/>
</li>
</ul>
</div>
</div>
<div class="features-buttons">
<a href="/help-desk-integration/"
><button class="all-use-cases">View all integrations</button></a
>
<a href=""
><button class="demo-button">Get a Demo</button></a
>
</div>
</div>
</div>
</div>
</div>
<div class="happyfox-apps client-testimonials carousel>
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>Thousands of great companies call</h3>
<h4>HappyFox a great friend</h4>
</div>
</div>
</div>
<div
class="owl-carousel owl-theme owl-loaded owl-drag"
id="testimonialCarousel"
>
<div class="owl-stage-outer">
<div
class="owl-stage"
style="
transition: all 0.25s ease 0s;
width: 4153px;
transform: translate3d(-2076px, 0px, 0px);
"
>
<div
class="owl-item cloned"
style="width: 583.2px; margin-right: 10px"
>
<div class="client-feedback">
<p class="feedback-text">
“With HappyFox we have a specialized partner, whose vast
customer portfolio across multiple industries, sees and knows
the next “big thing” in customer support, and integrates this
into a compact and cost-effective solution, saving
considerable effort, time and cost for us. In short, it allows
us to focus on happy customers – the rest we leave to
HappyFox.”
</p>
<div class="client-details">
<div class="client-name">
<p>Martin Hartvigsen</p>
<p>Director, Global Technical Support</p>
</div>
<div class="client-logo">
<img
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/jabra.svg"
alt="Jabra"
width="158"
height="80"
/>
</div>
</div>
</div>
</div>
<div
class="owl-item cloned"
style="width: 583.2px; margin-right: 10px"
>
<div class="client-feedback">
<p class="feedback-text">
“With HappyFox, I finally feel that I can trust the data I’m
able to export from the system. We implemented the solution
for email tracking but are now leveraging it to track incoming
invoices as well. If a business is facing similar problems to
ours in terms of tracking incoming emails or a high number of
incoming emails from the same customers or suppliers, in my
opinion HappyFox really is the best solution to resolve this.
With HappyFox, you really are able to track everything that is
coming in, and analyze the data in real-time.”
</p>
<div class="client-details">
<div class="client-name">
<p>Pankaj Kumar</p>
<p>
Manager, Accounts Payable Whirlpool Global Finance Center
</p>
</div>
<div class="client-logo">
<img
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/whirlpool.svg"
alt="Whirlpool"
width="160"
height="80"
/>
</div>
</div>
</div>
</div>
<div class="owl-item" style="width: 583.2px; margin-right: 10px">
<div class="client-feedback">
<p class="feedback-text">
“So far we have Facilities and Security using this system.
There is nothing I do not use in HappyFox and our team likes
the app, the reports, the smart rules, and the tags. We enter
tickets and complete them daily and HappyFox has improved our
average number of tickets completed per month. My customers
(Health Center Staff) have all responded very positively to
the change; they love that they can see all the tickets for
their site and comment on whether they’re still needed.”
</p>
<div class="client-details">
<div class="client-name">
<p>Karin Stopforth</p>
<p>Facilities Administrator</p>
</div>
<div class="client-logo">
<img
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/planned-parenthood.png"
alt="Planned Parenthood"
style="width: 250px; margin-top: 10px"
width="250"
height="31"
/>
</div>
</div>
</div>
</div>
<div class="owl-item" style="width: 583.2px; margin-right: 10px">
<div class="client-feedback">
<p class="feedback-text">
“With HappyFox we have a specialized partner, whose vast
customer portfolio across multiple industries, sees and knows
the next “big thing” in customer support, and integrates this
into a compact and cost-effective solution, saving
considerable effort, time and cost for us. In short, it allows
us to focus on happy customers – the rest we leave to
HappyFox.”
</p>
<div class="client-details">
<div class="client-name">
<p>Martin Hartvigsen</p>
<p>Director, Global Technical Support</p>
</div>
<div class="client-logo">
<img
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/jabra.svg"
alt="Jabra"
width="158"
height="80"
/>
</div>
</div>
</div>
</div>
<div
class="owl-item active center"
style="width: 583.2px; margin-right: 10px"
>
<div class="client-feedback">
<p class="feedback-text">
“With HappyFox, I finally feel that I can trust the data I’m
able to export from the system. We implemented the solution
for email tracking but are now leveraging it to track incoming
invoices as well. If a business is facing similar problems to
ours in terms of tracking incoming emails or a high number of
incoming emails from the same customers or suppliers, in my
opinion HappyFox really is the best solution to resolve this.
With HappyFox, you really are able to track everything that is
coming in, and analyze the data in real-time.”
</p>
<div class="client-details">
<div class="client-name">
<p>Pankaj Kumar</p>
<p>
Manager, Accounts Payable Whirlpool Global Finance Center
</p>
</div>
<div class="client-logo">
<img
loading="lazy"
src="//assets.www.happyfox.com/v2/logo/whirlpool.svg"
alt="Whirlpool"
width="160"
height="80"
/>
</div>
</div>
</div>
</div>
<div
class="owl-item cloned active"
style="width: 583.2px; margin-right: 10px"
>
<div class="client-feedback">
<p class="feedback-text">
“So far we have Facilities and Security using this system.
There is nothing I do not use in HappyFox and our team likes
the app, the reports, the smart rules, and the tags. We enter
tickets and complete them daily and HappyFox has improved our
average number of tickets completed per month. My customers
(Health Center Staff) have all responded very positively to
the change; they love that they can see all the tickets for