forked from crusher8010/Chargebee-Website-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
customer.html
840 lines (757 loc) · 42 KB
/
customer.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
<!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">
<link rel="stylesheet" href="customer.css">
<link rel="stylesheet" href="navbar.css">
<title>Customers</title>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap" rel="stylesheet">
</head>
<body>
<!--------------------------------------------------------------NAVBAR STARTS HERE----------------------------------------------------------->
<!-------------------------------------------------------------------------------------------------------------------------------------------->
<div id="navbar">
<!-- navbar div container-->
<!-----------------------------------"Chargebee"----------------------------------------->
<a href="index.html" style="text-decoration: none; color: black;">
<h1 id="siteName" style="font-family: 'Dancing Script', cursive;">Chargebee</h1>
</a> <!-- 1st item in left side-->
<div id="leftt">
<!-- navbar left side portion contianing navigation links to various pages -->
<!-------------------------"Products" dropdown menu--------------------------------------->
<div class="contain">
<!--contianer div for dropdown menu-->
<p class="head" style="font-weight:bold;">Product</p> <!-- 2nd item in left side-->
<div class="dropdown">
<!-- dropdown div only visible when hovering over "Product" item in navbar-->
<div id="one">
<!-- 1st div inside dropdown menu div. contains unordered list of links to various pages-->
<ul type="none">
<li style="font-weight: bold;"> Subscription Management </li>
<li class="tim"> <a href="">Overview</a> </li>
<li class="tim"> <a href="">Create & Manage Plans</a> </li>
<li class="tim"> <a href="">Pricing Management</a> </li>
<li class="tim"> <a href="">Retention</a> </li>
<li class="tim"> <a href="">Handle Trial Subscription</a> </li>
<li class="tim"> <a href="">Customer Self-service Portal</a> </li>
<li class="tim"> <a href="">Mobile Solutions</a> </li>
<li class="tim"> <a href="">Backdating Subscription</a> </li>
</ul>
</div>
<div id="two">
<ul type="none">
<li style="font-weight: bold;"> Billing Automation </li>
<li class="tim"> <a href="">Overview</a> </li>
<li class="tim"> <a href="">Usage Based Billing</a> </li>
<li class="tim"> <a href="">Invoicing Automation</a> </li>
<li class="tim"> <a href="">Quotes</a> </li>
<li class="tim"> <a href="">Proration</a> </li>
</ul>
</div>
<div id="three">
<ul type="none">
<li style="font-weight: bold;">Recurring Payments</li>
<li class="tim"> <a href="">Overview</a> </li>
<li class="tim"> <a href="">Multiple Payment Methods</a> </li>
<li class="tim"> <a href="">Multiple Payment Gateways</a> </li>
<li class="tim"> <a href="">Smart Dunning</a> </li>
<li class="tim"> <a href="">Chargeback Management</a> </li>
<li class="tim"> <a href="">Checkout Experience</a> </li>
<li class="tim"> <a href="">Receivables</a> </li>
</ul>
</div>
<div id="four">
<ul type="none">
<li style="font-weight: bold;">Accounting & taxes</li>
<li class="tim"> <a href="">Overview</a> </li>
<li class="tim"> <a href="">Revenue Recognition</a> </li>
<li class="tim"> <a href="">Manage Sales Tax</a> </li>
<li class="tim"> <a href="">One-Click Reconciliation</a> </li>
</ul>
</div>
<div id="five">
<ul type="none">
<li style="font-weight: bold;">Reporting & Analytics</li>
<li class="tim"> <a href="">Overview</a> </li>
<li class="tim"> <a href="">Deferred Revenue Reporting</a> </li>
</ul>
</div>
</div>
</div>
<!-----------------------------------"Pricing"-------------------------------->
<p class="temp"> <a href="pricing.html" style="text-decoration: none; color: black;">Pricing</a> </p>
<!---------------------------"Solutions" dropdown menu-------------------------->
<div class="contain">
<!--contianer div for dropdown menu-->
<p class="head" style="font-weight:bold;">Solutions</p> <!-- 4th item in left side-->
<div class="dropdown" id="second_dropdown">
<!-- dropdown div only visible when hovering over "Solutions" item in navbar-->
<div id="one">
<!-- 1st div inside dropdown menu div. contains unordered list of links to various pages-->
<ul type="none">
<li style="font-weight: bold;"> By Role</li>
<li> <a href="">Finance</a> </li>
<li> <a href="">Sales</a> </li>
<li> <a href="">RevOps</a> </li>
</ul>
</div>
<div id="two">
<ul type="none">
<li style="font-weight: bold;"> By Industry </li>
<li> <a href="">B2B SaaS</a> </li>
<li> <a href="">eCommerce</a> </li>
<li> <a href="">E-Learning</a> </li>
<li> <a href="">Publishing</a> </li>
<li> <a href="">Video & OTT</a> </li>
</ul>
</div>
<div id="three">
<ul type="none">
<li style="font-weight: bold;">By Strategy</li>
<li> <a href="">Role Out New Pricing</a> </li>
<li> <a href="">Expand Gloabally</a> </li>
<li> <a href="">Move Upmarket</a> </li>
<li> <a href="">Shift to Subscription</a> </li>
</ul>
</div>
<div id="four">
<ul type="none">
<li style="font-weight: bold;">By Business Size</li>
<li> <a href="">Startup</a> </li>
<li> <a href="">ScaleUp</a> </li>
<li> <a href="">Enterprise</a> </li>
</ul>
</div>
<div id="five">
<ul type="none">
<li style="font-weight: bold;">By Business Model</li>
<li> <a href="">Self-Serve</a> </li>
<li> <a href="">Sales Driven</a> </li>
</ul>
</div>
<div id="six">
<ul type="none">
<li style="font-weight: bold;">By Geography</li>
<li> <a href="">Europe</a> </li>
<li> <a href="">Australia</a> </li>
<li> <a href="">India</a> </li>
</ul>
</div>
</div>
</div>
<p class="temp"> <a href="customer.html" style="text-decoration: none; color: black;">Customers</a> </p>
<!-----------------------------"Resources" dropdown menu---------------------->
<div class="contain">
<!--contianer div for dropdown menu-->
<p class="head" style="font-weight:bold;">Resources</p> <!-- 4th item in left side-->
<div class="dropdown" id="third_dropdown">
<!-- dropdown div only visible when hovering over "Solutions" item in navbar-->
<div id="dropdown_left">
<div class="boxx" style="background-color: rgb(252, 219, 224);">
<p>Learn everything that falls under the umbrella of Subscription.</p>
<p style="font-weight: bold"> <a href=""
style="text-decoration: none; color: blue;">Learning Hub > </a> </p>
</div>
<div class="boxx">
<p>Read our ever-growing stories on SaaS, and get all the growth insights you need.</p>
<p style="font-weight: bold"> <a href=""
style="text-decoration: none; color: blue;">Chargebee Blog > </a> </p>
</div>
<div class="boxx">
<p>A quick overview of Chargebee to help you understand and implement it.</p>
<p style="font-weight: bold"> <a href=""
style="text-decoration: none; color: blue;">Chargebee Docs > </a> </p>
</div>
<div class="boxx">
<p>Chargebee's in-house team of implementation experts is here ot make sure you go live with
your Chargebee site at lighting-fast speed.</p>
<p style="font-weight: bold"> <a href=""
style="text-decoration: none; color: blue;">Profession al Services & Implementation
> </a></p>
</div>
<div class="boxx">
<p>Learn to unlock all revenure secrets to secure hyper-growth for your business. Access
free certifications, course and expert masterclasses.</p>
<p style="font-weight: bold"> <a href=""
style="text-decoration: none; color: blue;">Subscription Academy ></a></p>
</div>
<div class="boxx"></div>
<div class="boxx">
<p>Explore the best practices of all things SaaS and Subscription Billing.</p>
<p style="font-weight: bold"> <a href=""
style="text-decoration: none; color: blue;">Webinars > </a> </p>
</div>
<div class="boxx">
<p>Learn about the possibilities that change brings about and how Chargebee recognizes &
celebrates change-makers by being an enabler of change.</p>
<p style="font-weight: bold"> <a href=""
style="text-decoration: none; color: blue;">Champions of Change ></a></p>
</div>
<div class="boxx"></div>
</div>
<img src="https://library.kissclipart.com/20200128/tve/kissclipart-books-icon-book-icon-closed-book-icon-2675fc0f6ecc665d.png"
alt="" id="book">
<div id="dropdown_right">
<p style="font-weight: bold;">The Essential Guide on Subscription Billing</p>
<p>Wondering what you should ask yourself before choosing a Subscription Billing and Management
platform?</p>
<p> <a href="" style="font-weight: bold;">Read More > </a> </p>
</div>
</div>
</div>
<!-----------------------------------"Partners"----------------------->
<p class="temp"> <a href="" style="text-decoration: none; color: black;">Partners</a> </p>
<div id="rightt">
<!--right-most div of navbar containing change language, login page link and "get demo" button-->
<select id="changeLang">
<option value="english">English</option>
<option value="deutsch">Deutsch</option>
</select>
<p> <a href="login_signup.html" style="text-decoration: none; color: black; font-weight: bold;">Login </a> </p>
<button id="demo_btn"><a href="demo.html">Get Demo > </a></button>
</div>
</div>
<!----------------------------------------------------------------------------------------------->
<!-- Hamburger Menu Option -->
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
<!----------------------------------------------------------------------------------NAVBAR ENDS HERE---------------------------------------------------->
<!------------------------------------------------------------------------------------------------------------------------------------------------------>
<div id="top">
<div id="top1">
<div>
<h1>
Chargebee powers subscriptions for businesses of all sizes.
</h1>
<div id="top11">
<a href="login_signup.html"> <button>Sign up for free</button></a>
<p>Talk to us!</p></div>
</div>
<div>
<img src="https://webstatic.chargebee.com/assets/web/518/images/home/testimonial/cb-study.png"/>
<h2>... Integration was easy and the customer support provided was excellent. This is huge considering how deficient many players in the space are when ... </h2>
<div>
<img src="https://webstatic.chargebee.com/assets/web/518/images/case-study/voitek.jpeg"/>
<p>Voitek Sobieszczanski, Director of Finance & Operations</p>
</div>
</div>
</div>
<div id="top-right">
<div>
<img src="https://webstatic.chargebee.com/assets/web/518/images/case-study/whiteboard/whiteboard-banner.jpg"/>
</div>
<div>
<img src="https://webstatic.chargebee.com/assets/web/518/images/case-study/whiteboard/whiteboard-logo-white.png"/>
<h2>How Whiteboard reduced Churn by 100% using Chargebee and increased their MRR by 35% with improvede billing operations</h2>
<p>Read The Story → </p>
</div>
</div>
</div>
<div id="mid">
<div id="midpart1">
<img src="https://webstatic.chargebee.com/assets/web/519/images/customers/logos/freshworks-light-bg.png"/>
<img src="https://www.chargebee.com/static/resources/customers/calendly.png" alt="">
<img src="https://webstatic.chargebee.com/assets/web/519/images/customers/logos/linuxacademy-logo.png" alt="">
<img src="https://webstatic.chargebee.com/assets/web/519/images/customers/logos/fujitsu.png" alt="">
</div>
<div id="midpart2">
<div>
<div>
<img src="https://webstatic.chargebee.com/assets/web/519/images/case-study/freshdesk/fd-wall.jpg"/>
</div>
<div>
<img src="https://webstatic.chargebee.com/assets/web/519/images/customers/logos/transparent/freshdesk.png"/>
<h3>From 5000 to 80,000 Customers: HOw Freshdesk Unlocked Massive Scale</h3>
<p>READ THE STORY </p>
</div>
</div>
<div>
<img src="https://www.chargebee.com/static/resources/customers/freedom-logo.png"/>
<h3>We didn't have another choice, we never had to choose between Chargebee and another provider. Chargebee was the clear winner.</h3>
<div id="midpart2-1">
<img src="https://webstatic.chargebee.com/assets/web/519/images/case-study/freedom-fred.png"/>
<p>Fred Stutzman, CEO, Freedom</p>
</div>
</div>
</div>
<div id="midpart3">
<img src="https://www.chargebee.com/static/resources/customers/percona.png"/>
<img src="https://www.chargebee.com/static/resources/customers/cosmos.png" alt="">
<img src="https://www.chargebee.com/static/resources/customers/freedom-logo.png" alt="">
<img src="https://www.chargebee.com/static/resources/customers/crew.svg" alt="">
<img src="https://www.chargebee.com/static/resources/customers/gigwell.png" alt="">
</div>
<div id="video">
<!-- <iframe width="400px" height="400px" src="https://www.youtube.com/watch?v=R9XgyoLQ9qw&t=22s" ></iframe> -->
<iframe width="760" height="450" src="https://www.youtube.com/embed/R9XgyoLQ9qw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div id="midpart4">
<div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/1uAlrh0KGiORBrlK8DEgi8/709bd192fd1e622d87696b0825f29a94/Refocus-logo.png"/>
<h3>How Refocus Closed Deals 2X Faster by Connecting HubSpot with Chargebee</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/5rQOlwAzI5yq3EMDem7ONr/d3e02a4918490b0956e2f6a0a0a2e407/Sendinblue-logo.png"/>
<h3> Serving 300K Active Users across 180 countries: The 'Sendinblue' Phenomenon</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/6Pnnx8CmE2qE8gYjwrZKLP/983716251828f2eadd01c852f4e764c3/Jeune_Afrique-logo.png"/>
<h3>
How Jeune Afrique Rapidly Expanded to New Geographies With 10X Faster Time-To-Market
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/PqRaNiIAeF1HVRap2kQLr/fedb83c0091fc7a6c7a14d570e6a34ff/Powtoon-logo.png"/>
<h3>
How Chargebee Powered a 63% Save Rate Lift for Powtoon
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/7tmqeS4YprL5vB2Dl7au09/9b3c6530fe5a638b9c1feeb1ebdc8647/Drake_Software-logo.png"/>
<h3>Switching to GAAP and reimagining the revenue recognition process: The Drake Software story
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/6QGdqstkUp9ay2gi4BKYu7/8f2dec71597399c32dc53c892b891fa4/Unbounce-logo.png"/>
<h3>
A better cancel experience to engage and delight customers at Unbounce
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/2a3Afd7k1PCGjJZO3w7KS0/81b2958e306d1ec1d05b29148ad34086/TouchNote-logo.png"/>
<h3>
How TouchNote Defended Against Cancellations & Increased Save Rate by 56%
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/3cTmYSA4SnkP8eX6v4wwQv/cc884339d4b83da83338a240a2d77f20/ClickFunnels-logo.png"/>
<h3>
ClickFunnels retains 230% more customers with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/URPmg8IREgRROn2XGP1e7/2f03fadc22c285a4000fe190724e291c/Vital_Proteins-logo.png"/>
<h3> How Vital Proteins increased its Save Rate by 2x using Chargebee </h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/2En2xankaFJOuY1AOMFgQb/05216dffdbd6bf534ba1fcb7d6735d1d/Freshly-logo.png"/>
<h3>
800% ROI: How Chargebee’s retention workflow helped Freshly boost revenue projections by $1M
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/1guqVnCk6AF398SeSxLHzY/1b7a35e59ec0214c8ca4d1307858f4a2/Kabo-logo.png"/>
<h3> How Kabo Increased AOV by 25% to Take Their Business Up, Pup, and Away! </h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/6EjDOSaydLMcfye4mbYJkE/090d82db5a4055c9bea8f5deb339db26/Konica_Minolta-logo.png"/>
<h3>
How Konica Minolta India increased credit controllers’ coverage by 33% using Chargebee Receivables
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/6SBy6AbEJTiRCFU8azB8zR/d204504a7702c152ff1de9e39b1433b0/TokyoTreat-logo.png"/>
<h3> How TokyoTreat Built a Snackable, Scalable D2C Subscription Business with Chargebee </h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/4Vw9YapaAkmNgTpHKNUr6V/73f874eab4e7b508b6e96a6cf63a19ad/download.jpeg"/>
<h3>
Leadinfo scaled globally 3x faster with Chargebee</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/115KJfTy7cOqoxv52EvpeF/1f78746b783fa2e600eb4c8a806a9e35/Study-dot-com-logo.png"/>
<h3> Study.com scaled painlessly to millions of users and 5 products with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/7mbC3ZQRzMvAPPl9Jip162/ecc92de16ecf387b21831665aa5d2879/Slidebean-logo.png"/>
<h3> How Chargebee fueled Slidebean’s global expansion to 30+ countries
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/1dgwHDYQBk6goEDt3dc5L6/accafa616f1a246920bb0ce9d167d025/Deliverr_svg.svg"/>
<h3> I spend less than two hours a week managing accounts receivables
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/6iyYfrd6SI7vbzdXJZLxdp/6cc8b77fee49f8f4ca3e60bf0a43e795/RangeMe-logo.jpeg"/>
<h3>
How RangeMe Reduced Churn and Scaled to 2,000+ Customers
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/2jRCXcODogqymlRLS20jy9/282bcbebc623cd2d54e393858d49a13d/Zenchef-logo.png"/>
<h3> How Chargebee Untangled Zenchef from Spaghetti Billing and Set Them up for Flexibility at Scale.
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/69VgNoqWVJCPX4Moj5zYHF/cfc6938ecf0bd88cbf271d4983b7bfcc/Livestorm-logo.png"/>
<h3>
How Chargebee Cut Down Livestorm’s Support Time by Half
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/4of1bxaJrX68ipTZapjq2X/299cf0922731602286cc8ee87cfde96d/Freedom-logo.png"/>
<h3> How Freedom improved conversions by 33% with a stellar billing experience, using Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/1CuJbolhOOZQYSI7CyItlK/6592796c15f7b15a575a2acdbd6e69b7/codacy.svg"/>
<h3> How Codacy Automated Nearly 90% of Their Revenue Recognition Tasks with Chargebee RevRec
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/2Fi8riH5IgVX4alX01PxSx/01133d776df40d330b7765f632b30e4e/Whiteboard_CRM-logo.png"/>
<h3> How Whiteboard reduced Churn by 100% using Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/mWTkQj5XaaL1IVb5ENzDT/b28859b1e219b6d501218a2c1ceaac3d/fishburners.png"/>
<h3>How Fishburners saves 105 hours/month of manual accounting with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/0RVVAtHwZmF6BsY2y8Dhm/7e326ea058824bbe910878ce44cebfb3/Proxyclick-logo.jpeg"/>
<h3> How Proxyclick Scaled to Newer Territories with Optimized Subscription and Revenue Operations
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/7LF6W9atss01PwHWml0pZQ/948428b5fd063a72022dad73a6001ebb/GetAccept-logo.png"/>
<h3>How GetAccept grew their revenue 4x in 12 months
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/nIhhI2E9kNzLY7wCyJNkp/eca813b5d5f9698beab8db5bad434799/Jiobit-logo.png"/>
<h3> How Jiobit scaled and monetized its IoT Subscriptions using Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/4a5UJTIKQqN2gFGwZQLLX0/4e99443bd92a2e889f72eb8673ff420d/AX_Semantics-logo.png"/>
<h3> How AX Semantics improved cross-functional performance by tracking Customer LTV on RevenueStory
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/5xBuFa17XBobR62DEX3QdV/2e4a2b71fd36d57dc8066d6203c63906/Voxloud-logo.png"/>
<h3> How Italy-based Voxloud Conquered Compliance with Mandatory B2B e-invoicing, using Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/7esCDhih3oO653VejGUGW8/362400efb20f9a733a2ceb51b2867f81/BitGym-logo.png"/>
<h3>How BitGym Grew, with an 80% Boost in Productivity, using Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/2EJFWsboqeonvu4f7tuj5n/8851da2c848df47ecf9583133ed8405e/ScreenCloud-logo.png"/>
<h3>
How ScreenCloud course-corrected their churn with critical SaaS Quick Ratio, using RevenueStory
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/SF5OtvI5F7PeWYUhYwot8/9537c6ba98149ba642806e47fbec5a7a/HelloHQ-logo.svg"/>
<h3> How HQLabs built a Zapier Automation for Efficient Affiliate Management, using Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/47dIZZC3IwHPIPY2MdQ82F/dd2f19e6ff999fabe3df19db15ca4d9c/Screencastify-logo_1.png"/>
<h3> How Screencastify scaled to support millions of users and augmented their revenue on autopilot, using Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/3OucyY8d2ngAW8Q7sdvYHI/b58e60613c56ecf632d49f51438df745/animalz.svg"/>
<h3> How Animalz streamlined their Account Receivables at a cost of less than 1% of their annual recurring revenue, using Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/1rgMg5hO4J2jzXF1jeynIB/9ba804a7152ae01d0a74aad08f23d00d/Harvestr-logo.png"/>
<h3>How Harvestr witnessed a growth of 15% on their MRR, with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/4wUzcJjtMtWynzGvIGgZFx/e6cb2af2b7dc3177b380f82253a250b5/Drawboard-logo.png"/>
<h3> How Australia-based Drawboard expanded globally to new markets using Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/2eQrZVwX3w7n0Pyv6mSdCQ/cab8a96255b56bdb31bc574a803c904c/Doctify-logo.png"/>
<h3> How Doctify streamlined their Revenue Operations to increase efficiency, with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/VdpN4i6f8CMw9aydKycL0/a572d1045b3dfbd1f549eddbf6c90e6d/Circleloop-logo.png"/>
<h3> How CircleLoop Aligned their Sales and Operations Seamlessly To Automate Revenue Operations, with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/1zRCZ2TPHZkHSbFD7xIycf/6452a3f4a8f340ca4130cc663e2121e3/LiveSession-logo.png"/>
<h3> How LiveSession grew 7x over 6 months, using Chargebee's Freemium offering
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/2icsjRJPg6DAb56wMkPkKU/c8f85e73bf8f619e29aecdbf1a689228/RiseVision-logo.png"/>
<h3> How Rise Vision saved 50% time reconciling numbers with their monthly financials, with RevenueStory
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/7iQ41V7b3lbbS1LsoLWspH/d04d9d8e5f404ac642440acfbd42af27/Userlane-logo.png"/>
<h3> How Userlane closed their month-end financials in 80% less time, with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/3vVpZapF6KUhSZpVrTFOi8/9a01d86121df6285a0a76b49f9343102/Upcodes-logo.png"/>
<h3>How YC-backed UpCodes simplified their subscription billing operations to scale exponentially, with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/4jOTww6xNnx4WbdsGWzcdg/b7829bb943a59dc2be073ed78b109d65/Sisu-logo.png"/>
<h3> How Sisu Built An Efficient Sales Engine, with Chargebee and Salesforce
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/3Gt3FWIAaRSyQobBcarhue/aee7f657d5abc9e64cc03762188edc74/A_Cloud_Guru-logo.png"/>
<h3> How Australia-based A Cloud Guru Scaled their Subscription Model, with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/34QUCzBOmZmc6kgYjbagQZ/3c012991858c0da5b65130efdc7abc6d/Coorpacademy-logo.png"/>
<h3> How the Sales Team at Coorpacademy Spent 50% Less Time on Non-selling Tasks after Using Chargebee + Salesforce
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/4RNod1mBFaCBnmoZuPXbAL/ad72010ca0353082abee2812b0209cc6/Instaply-logo.svg"/>
<h3> How Process Automation Enabled Instaply to Scale and Set Foot in Europe
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/63O2SU6yAjw7kXSCv9PLAh/7e588031699fe2169eb3bdaeb3bd21a6/MakeSpace-logo.jpeg"/>
<h3> Scaling from 4 to 31 Different Markets in a Year: The MakeSpace Story
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/y56f61jyTUxq1L5AHpZmm/0e1c954ccf5581279c4b10aa1b04f2bf/Yousign-logo.png"/>
<h3> How Europe-based Yousign Handled Hyper-growth During COVID, with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/6IdFgQXsO6mVffxYLktUMN/8bdaa88a1e496b139e8a3f6629a2ac06/Superfoods_comapny-logo.png"/>
<h3> 4x Growth in Revenue in 12 Months - the Incredible Growth Story of Superfoods Company
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/3hnLtoJqh6gaWdRj4sEswe/7a295ddcd9852378fba68a96effde985/Trusted_Tech_Team-logo.png"/>
<h3> Doubling Revenue Projections, Maintaining a Churn Rate of less than 1% Trusted Tech Team's Winning Strategy
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/3NVHKieAYSSjbTvtbcV634/82ae79af6441122be590bfa0faa76bbc/Rented-logo.png"/>
<h3> How Rented Uses Chargebee to Reduce Churn, Forecast Better, and Drive Customer Loyalty
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/7cChmki9WK9OUcCVcHaS5w/6b5cd66b61f6245a49b838a1997ac5a2/Web_Shop_Manager-logo.png"/>
<h3> Challenging the Status Quo: Web Shop Manager Improved Their Productivity by 50% Using Chargebee, Compared to Zuora
</h3>
<p>→</p>
</div>
<div>
<img src="https://images.ctfassets.net/a7hvy8sclsq6/3Nx4ppTupWqsAo5iIFNuIE/5684253de8ce1704cd1e54df2c325b1d/Trade_Ideas-logo.png"/>
<h3> How Trade Ideas Generated 4X Revenue for Every Dollar Spent on Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://seekvectorlogo.com/wp-content/uploads/2019/11/doodle-vector-logo.png"/>
<h3>
How Doodle scaled globally after moving from a monolithic architecture to subscriptions model, with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://webstatic.chargebee.com/assets/web/519/images/case-study/hoxtonmix-logo.png"/>
<h3>
How Hoxton Mix saves 60 developer hours per month with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://webstatic.chargebee.com/assets/web/519/images/customers/logos/sharetribe.svg"/>
<h3>
How Sharetribe helps more business iterate faster,with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://webstatic.chargebee.com/assets/web/519/images/customers/logos/vinylmeplease-new.png"/>
<h3>
How Vinyl Me,Please is making music purists happy,with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://webstatic.chargebee.com/assets/web/519/images/customers/logos/guava-pass.png"/>
<h3>
How GuavaPass helps more people get fiiter,with Chargebee
</h3>
<p>→</p>
</div>
<div>
<img src="https://webstatic.chargebee.com/assets/web/519/images/customers/logos/freshdesk.png"/>
<h3>
From 500 to 80,000 Customers: How Freshdesk Unlocked Massive Scale
</h3>
<p>→</p>
</div>
</div>
</div>
</div>
</div>
<!-- ============================================================ -->
<div id="end_above">
<div id="k1">
<h1 id="big">Get a Demo Customized to Your Subscription Workflow</h1>
<div id="k2">
<input type="email" id="email" placeholder="email@company.com">
<button id="btn"><a href="demo.html">Get a Demo</a></button>
</div>
<p id="alert">Please fill this field before continuing</p>
</div>
<div id="k4">
<img id="k3" src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Pierre-Person.jpg/1200px-Pierre-Person.jpg" alt="">
<p id="num1">Using Chargebee is also one less area we have to worry about as we scale. We know that it'll adapt to most if not all situations that'll come up in the future.</p>
<h4 id="num2">Robin Lambert,</h4>
<p id="num3">Co-founder & CPO, Livestorm</p>
</div>
</div>
<!-- ========================================================================= -->
<div id="foot">
<div style="margin-left: 5%;" class="comp_services">
<div>
<div class="display_flex">
<p>Product ></p>
<i class="fi-rr-angle-small-right arrow"></i>
</div>
<div class="hover">Subscription Management</div>
<div class="hover">Recurring Billing and Invoicing</div>
<div class="hover">Recurring Payments</div>
<div class="hover">Accounting and Taxes</div>
<div class="hover">SaaS Reporting</div>
<div class="hover">Enterprise Billing</div>
</div>
<div>
<div class="display_flex">
<p>Help & Support ></p>
<i class="fi-rr-angle-small-right"></i>
</div>
<div class="hover">Security</div>
<div class="hover">FAQs</div>
<div class="hover">Status</div>
<div class="hover">Product Documentation</div>
<div class="hover">API Documentation</div>
<div class="hover">Supported Payment Gateways</div>
</div>
<div>
<div class="display_flex">
<p>Resources ></p>
<i class="fi-rr-angle-small-right"></i>
</div>
<div class="hover">Blog</div>
<div class="hover">Compare Payment Gateways</div>
<div class="hover">Tackling Payment Failures</div>
<div class="hover">Enterprise Billing Guide</div>
<div class="hover">Webinars</div>
<div class="hover">Glossaries</div>
</div>
<div>
<div class="display_flex">
<p>Company ></p>
<i class="fi-rr-angle-small-right"></i>
</div>
<div class="hover">Customers</div>
<div class="hover">Partners</div>
<div class="hover">Careers</div>
<div class="hover">Press</div>
<div class="hover">Terms</div>
<div class="hover">Privacy</div>
</div>
</div>
<div id="foot_icon">
<div>
<img class="logo" src="https://spng.pngfind.com/pngs/s/667-6673136_file-chargebee-logo-chargebee-logo-hd-png-download.png" />
</div>
<div>
<a href="https://www.linkedin.com/home"><img class="social_logo" src="https://cdn-icons-png.flaticon.com/512/174/174857.png" /></a>
<a href="https://www.youtube.com/"><img class="social_logo" src="https://cdn.pixabay.com/photo/2021/02/16/06/00/youtube-logo-6019878_1280.png" /></a>
<a href="https://twitter.com/i/flow/login"><img class="social_logo" src="https://cdn-icons-png.flaticon.com/512/124/124021.png" /></a>
<a href="https://www.facebook.com/"><img class="social_logo" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Facebook_icon.svg/2048px-Facebook_icon.svg.png" /></a>
</div>
</div>
</div>
</body>
</html>
<script>
let hamburger = document.querySelector('.hamburger');
let right = document.getElementById('leftt');
let left = document.getElementById('rightt');
hamburger.addEventListener('click', () =>{
hamburger.classList.toggle('active');
right.classList.toggle('active');
left.classList.toggle('active');
})
</script>