-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
777 lines (755 loc) · 30.7 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
<!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>Module Marathoners</title>
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/style2.css" />
<link rel="stylesheet" href="CSS/common.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"
defer></script>
<script src="javascript/index.js" defer></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
</head>
<body style="background-color: rgb(216, 179, 230);">
<!--!--------------------------------------------- Header ----------------------------------------------->
<header>
<nav id="stickynav">
<div id="NavBrand"><a href="index.html"><img style="width:200px;" src="icons/mainLogo.png" alt=""></a>
</div>
<div id="NavlinkParent">
<div data-navclose><a class="nav-link" href="products.html">Products</a></div>
<div data-navclose><a class="nav-link" href="solution.html">Solutions</a></div>
<div data-navclose><a class="nav-link" href="teams.html">Teams & Companies</a></div>
<div data-navclose><a class="nav-link" href="pricing.html">Pricing</a></div>
<div data-navclose><a class="nav-link" href="resources.html">Resources</a></div>
</div>
<div id="MyAccBtn" class="flex">
<a href="myaccount.html"><button id="MyAccountBtn" class="BlueWhiteBtn">My Account</button></a>
<button id="navclickbtn" data-navclose>
<svg data-navclose xmlns="http://www.w3.org/2000/svg" height="30" viewBox="0 96 960 960" width="30">
<path data-navclose d="M120 816v-60h720v60H120Zm0-210v-60h720v60H120Zm0-210v-60h720v60H120Z" />
</svg>
</button>
</div>
</nav>
</header>
<!--*--------------------------------------------- Main Body ----------------------------------------------->
<main>
<section id="LandingPage">
<div class="LandingParent" data-aos="fade-in">
<div id="LandLeft" data-aos="fade-out">
<h1 class="Introduction">
Easy <br /><label>scheduling</label>
<label style="color: rgb(1, 65, 155)">ahead</label>
</h1>
<p class="lpara1">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Temporibus unde recusandae soluta harum error. Exercitationem optio sit explicabo fuga facere.
</p>
<br />
<div class="flex">
<button class="landingbuttons googleRedirect">
<img width="25px" src="Images/Icons/googlesvg.svg" alt="" />
Sign up free with Google
</button>
<button class="landingbuttons googleRedirect">
<img width="25px" src="Images/Icons/microsoft.svg" alt="" />
Sign up free with Microsoft
</button>
</div>
<hr />
<label for="" style="color: rgb(1, 65, 155)">Sign up free with email.</label>
<label for=""> No credit card required</label>
</div>
<div class="LandRight" data-aos="fade-out">
<img id="landingimage" src="icons/Homepage-Hero-new.webp" alt="" />
</div>
</div>
<div class="LandCompanies">
<h1 data-aos="fade-up">
Simplified scheduling for more than
<label style="color: rgb(1, 65, 155)">10,000,000</label><br> users
worldwide
</h1>
<div class="LandCompaniesimgs">
<img src="icons/ebayX.svg" alt="" data-aos="fade-in" />
<img src="icons/ZenefitsX.svg" alt="" data-aos="fade-in" />
<img src="icons/compassX.svg" alt="" data-aos="fade-in" />
<img src="icons/twiliox.svg" alt="" data-aos="fade-in" />
<img src="icons/dropboxX.svg" alt="" data-aos="fade-in" />
</div>
</div>
</section>
<!--todo--------------------------------------------- <Design For trams> ----------------------------------------------->
<section id="DesignForTeams_Section" class="sectionsTwo">
<h1 class="SecitonHeadOne">
Designed for teams who conduct meetings at scale
</h1>
<div id="TabSelectors">
<div id="salestab" class="activeDesign">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/3OwgyUlrXHtg0IAggLiBxM/585e2deb0c6a37def311948d533cec83/Sales_Solution_Icon.svg"
alt="" />
<p>Sales</p>
</div>
<div id="marketingtab">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/2jwWiBSI8ybK6co0IkpDyl/6f12dc2800f917daaf6208b9c50dda2a/Marketing.svg"
alt="" />
<p>Marketing</p>
</div>
<div id="customertab">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/6KO0vF2ofioxGmQJGQBdT1/17aa4dde7a8f9b24e477e936471cf9ae/Theme_Light_-_2023-01-30T160450.970.svg"
alt="" />
<p>Customer Success</p>
</div>
<div id="recrutingtab">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/1ZtP4RsSOCElDrcJqAI9lZ/94cfe77e9d3674629eb872b821a97fd4/Group__3_.svg"
alt="" />
<p>Recruiting</p>
</div>
<div id="infotab">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/4GBMikmwmpyt1nyj9axwHe/7596905d688d842e07d36956a92bb57f/Happy-Laptop-Icon__1_.svg"
alt="" />
<p>Information Technology</p>
</div>
<div id="edutab">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/2ISl5s3a5RId9XpeuTJBxV/0583fa2f7b03759f83ffdd7dd9adce9b/Theme_Light_-_2023-01-30T155502.651.svg"
alt="" />
<p>Education</p>
</div>
</div>
<div id="DesignTeamTabs">
<div id="salestabbox" class="DesignTeamTabsChild">
<div class="Designtabparas" data-aos="fade-right">
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/6XYk0FVB5XgZq1VNWa3F6g/69c7c06005970e3afa4d837ff13da76a/Theme_Light__12_.svg"
alt="" />
</div>
<div>
<h3>Drive more revenue</h3>
<p>
Book high-value meetings in seconds and turn scheduling into
a competitive advantage.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/7ca46xMCYZeCwUBwo8chR5/a5348e9e292420609388895feeca6808/Theme_Light__33_.svg"
alt="" />
</div>
<div>
<h3>Speed up your sales cycle</h3>
<p>
Keep your deal momentum high and remove scheduling friction
at every stage of your sales cycle.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/4hDDf32o6Lz7q8SKL4jpia/762c7012671de1694da8c6a4414ec4c9/Theme_Light__8_.svg"
alt="" />
</div>
<div>
<h3>Close more deals</h3>
<p>
Customize reminder and follow-up workflows to move deals
along, integrate with sales tools, and remove logistical
tasks to focus on selling.
</p>
</div>
</div>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
<div class="Designtabimgs" data-aos="fade-left">
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/2rG4thXSvKkcjfy96bmbWa/1d7cd9d16cc09fffcdea73cb6718479f/Calendly-Sales-Small-new.png?w=1140&h=955&q=85&fm=webp"
alt="" />
</div>
</div>
<div id="marketingtabbox" class="DesignTeamTabsChild">
<div class="Designtabparas">
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/6XYk0FVB5XgZq1VNWa3F6g/69c7c06005970e3afa4d837ff13da76a/Theme_Light__12_.svg"
alt="" />
</div>
<div>
<h3>Drive more pipeline</h3>
<p>Turn marketing leads into booked meetings, faster.</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/7ca46xMCYZeCwUBwo8chR5/a5348e9e292420609388895feeca6808/Theme_Light__33_.svg"
alt="" />
</div>
<div>
<h3>Improve lead response times</h3>
<p>
Gain a competitive advantage when you qualify, route, and
book leads instantly.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/4hDDf32o6Lz7q8SKL4jpia/762c7012671de1694da8c6a4414ec4c9/Theme_Light__8_.svg"
alt="" />
</div>
<div>
<h3>Boost conversion rates</h3>
<p>
Reduce friction in the sales funnel and close more deals.
</p>
</div>
</div>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
<div class="Designtabimgs">
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/6MaOVZrhlUGMwh5xszyWl8/2aaeec70d4e44490f150e28ea21d3165/Calendly-Demand-Gen-Small.png?w=1141&h=937&q=85&fm=webp"
alt="" />
</div>
</div>
<div id="customertabbox" class="DesignTeamTabsChild">
<div class="Designtabparas">
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/6XYk0FVB5XgZq1VNWa3F6g/69c7c06005970e3afa4d837ff13da76a/Theme_Light__12_.svg"
alt="" />
</div>
<div>
<h3>Drive more retention</h3>
<p>
Bring all of your experts together and connect with
customers at every stage of their journey to build
long-lasting partnerships.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/7ca46xMCYZeCwUBwo8chR5/a5348e9e292420609388895feeca6808/Theme_Light__33_.svg"
alt="" />
</div>
<div>
<h3>Speed up your response times</h3>
<p>
Quickly book time to solve customers’ needs and help them
self-serve to support their goals.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/4hDDf32o6Lz7q8SKL4jpia/762c7012671de1694da8c6a4414ec4c9/Theme_Light__8_.svg"
alt="" />
</div>
<div>
<h3>Improve NPS and customer health</h3>
<p>
Change the way you schedule meetings to increase customer
satisfaction and keep engagement high with reminder and
follow-up workflows.
</p>
</div>
</div>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
<div class="Designtabimgs">
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/47xznwNRRuHE6gx1VSbhee/2f9ad09c15c55a4a252239f2e915c459/Calendly-Customer-Success.png?w=1141&h=939&q=85&fm=webp"
alt="" />
</div>
</div>
<div id="recrutingtabbox" class="DesignTeamTabsChild">
<div class="Designtabparas">
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/6XYk0FVB5XgZq1VNWa3F6g/69c7c06005970e3afa4d837ff13da76a/Theme_Light__12_.svg"
alt="" />
</div>
<div>
<h3>Hire more efficiently</h3>
<p>
Spend less time wrangling calendars and more time meeting
candidates.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/7ca46xMCYZeCwUBwo8chR5/a5348e9e292420609388895feeca6808/Theme_Light__33_.svg"
alt="" />
</div>
<div>
<h3>Speed up your recruiting cycle</h3>
<p>Book interviews in seconds and reduce time-to-fill.</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/4hDDf32o6Lz7q8SKL4jpia/762c7012671de1694da8c6a4414ec4c9/Theme_Light__8_.svg"
alt="" />
</div>
<div>
<h3>Improve the candidate experience</h3>
<p>
Eliminate friction and make your recruiting process a
competitive advantage.
</p>
</div>
</div>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
<div class="Designtabimgs">
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/1kDKK7sXKlgYglms0bWvmh/832a633866ff496a90261876f026d5fd/Calendly-Recruiting-Small.png?w=1140&h=930&q=85&fm=webp"
alt="" />
</div>
</div>
<div id="infotabbox" class="DesignTeamTabsChild">
<div class="Designtabparas">
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/6XYk0FVB5XgZq1VNWa3F6g/69c7c06005970e3afa4d837ff13da76a/Theme_Light__12_.svg"
alt="" />
</div>
<div>
<h3>Drive adoption and ROI across teams</h3>
<p>
Partner with our team to onboard, drive adoption, and
identify success metrics to achieve greater value, faster.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/7ca46xMCYZeCwUBwo8chR5/a5348e9e292420609388895feeca6808/Theme_Light__33_.svg"
alt="" />
</div>
<div>
<h3>
Maintain enterprise-grade security with scheduling
automation
</h3>
<p>
Stay aligned with your security requirements and reduce risk
across the org.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/4hDDf32o6Lz7q8SKL4jpia/762c7012671de1694da8c6a4414ec4c9/Theme_Light__8_.svg"
alt="" />
</div>
<div>
<h3>Implement and govern at ease</h3>
<p>
Eliminate the manual processes of implementing, managing
user access and permissions on the platform.
</p>
</div>
</div>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
<div class="Designtabimgs">
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/2Vw1fqn2KMdFMULRX84jgx/bcee83879a5d189867d98689b0088d0d/Calendly-IT_Small__3.png?w=2282&h=1876&q=85&fm=webp"
alt="" />
</div>
</div>
<div id="edutabbox" class="DesignTeamTabsChild">
<div class="Designtabparas">
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/6XYk0FVB5XgZq1VNWa3F6g/69c7c06005970e3afa4d837ff13da76a/Theme_Light__12_.svg"
alt="" />
</div>
<div>
<h3>
Drive more valuable connections with automated scheduling
</h3>
<p>
Spend more quality time supporting students, whether you’re
advising, tutoring, career planning, or counseling.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/7ca46xMCYZeCwUBwo8chR5/a5348e9e292420609388895feeca6808/Theme_Light__33_.svg"
alt="" />
</div>
<div>
<h3>Increase communication and foster coordination</h3>
<p>
Make your schedule more accessible to students and
prospects, allowing them to book time when they need it
most.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/4hDDf32o6Lz7q8SKL4jpia/762c7012671de1694da8c6a4414ec4c9/Theme_Light__8_.svg"
alt="" />
</div>
<div>
<h3>Deliver a better educational experience</h3>
<p>
Focus on what matters most: supporting and connecting with
your students, so they can succeed.
</p>
</div>
</div>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
<div class="Designtabimgs">
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/1nFkpdx4ok8zrMu4ZCkIxV/2d9761a58b2d846458fa27797dc2ecee/Calendly-Education.png?w=1140&h=932&q=85&fm=webp"
alt="" />
</div>
</div>
</div>
</section>
<!--todo--------------------------------------------- <WeMakeSchedule> ----------------------------------------------->
<section id="WeMakeScheduling_Section" class="sectionsTwo" data-aos="fade-up">
<h1 class="SecitonHeadOne">
We make scheduling for you easier than ever
</h1>
<div class="WeMakeSchedule_Parent">
<div class="WeMakeSchedule_Chiled" data-aos="fade-left">
<div>
<h1 id="MakeYourItHead">
Share your MyCal <br />
availability with others
</h1>
<p>
Grow your business with scheduling automation. Simply email,
text, or add your Calendly availability to your website – and
watch prospects and recruits book high-value meetings with you.
</p>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
<div>
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/7mkknkKmPsEGwaB5mdt60t/a0010378ce3a001a11e9040372a91362/Calendly-Email-Embed-Recruiting.png?w=1140&h=931&q=85&fm=webp"
alt="" />
</div>
</div>
<div class="WeMakeSchedule_Chiled" data-aos="fade-right">
<div>
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/6XqS7MbsZB4a08zAUxOHde/033649d82a01b51bbc080b037aac0206/Calendly-Round-Robin.png?w=1140&h=931&q=85&fm=webp"
alt="" />
</div>
<div>
<h1 id="MakeYourItHead">Schedule as a team</h1>
<p>
MyCal adapts to both you and your team's scheduling preferences.
Co-host a client call with a colleague, email reminders and
follow-ups, and integrate everything with your preferred
software tools.
</p>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
</div>
<div class="WeMakeSchedule_Chiled" data-aos="fade-left">
<div>
<h1 id="MakeYourItHead">Hit Your Number</h1>
<p>
High-value meetings are the lifeblood of your business. Increase
revenue, retain customers, and land recruits with the #1
scheduling automation platform.
</p>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
<div>
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/ImJSAqUd3vtZlQiEiyWXH/a6a23c23b5d4fdb5173b5a43c48de78a/Calendly-Graph.png?w=1140&h=930&q=85&fm=webp"
alt="" />
</div>
</div>
</div>
</section>
<!--todo--------------------------------------------- <OneProfile> ----------------------------------------------->
<section id="OneProfile" class="sectionsTwo">
<div>
<div data-aos="fade-right">
<img width="100%"
src="https://cdn.britannica.com/65/227665-050-D74A477E/American-actor-Leonardo-DiCaprio-2016.jpg?w=400&h=300&c=crop"
alt=""
style="border-radius: 30px;"/>
</div>
<div class="OneProfileRighet" data-aos="fade-left">
<h1 id="oneprofileH1">
“Calendly has increased meetings with customers by 216% for our
Vonage team.”
</h1>
<br />
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/2H4GbF1jpOyD7cNMW0Dv82/85a232765d647c41403ca471fe76589d/VonageLogo.svg"
alt=""
/>
<br /><br />
<h3 id="oneprofileH3">Leo Di Carprio</h3>
<p>Head of Customer Success UK/EMEA</p>
<br />
<a href="" id="Readmore">Read More > </a>
</div>
</div>
</section>
<!--todo--------------------------------------------- <SchedulingAutomation> ----------------------------------------------->
<section id="SchedulingAutomation_Section" class="sectionTwo" data-aos="fade-up">
<h1 class="SectionHeadTwo">
Scheduling automation happens before and after meetings
</h1>
<div class="SchedulingParent" data-aos="fade-right">
<div class="SchedulingLeft">
<img id="ScAuImg" src="icons/scl1.jpg" alt="" />
</div>
<div class="SchedulingRight" data-aos="fade-left">
<div>
<h1 id="Schlimg1" class="SchedulingTexts">
Let people schedule meetings on your website
</h1>
</div>
<div>
<h1 id="Schlimg2" class="SchedulingTexts">
Screen people before they can book with you
</h1>
</div>
<div>
<h1 id="Schlimg3" class="SchedulingTexts">
Make people reconfirm meetings with you
</h1>
</div>
<div>
<h1 id="Schlimg4" class="SchedulingTexts">
Automatically move a deal along with helpful content
</h1>
</div>
</div>
</div>
</section>
<!--todo--------------------------------------------- <Integration Extension> ---------------------------------------------->
<section id="Integration_Section" class="sectionsTwo" data-aos="fade-up">
<div>
<div>
<h1 id="MakeYourItHead">
Integrations & <br />
Extensions
</h1>
<p>
Boost productivity with integrations that fold right <br />
into your workflow.
</p>
<br />
<button class="BlueWhiteBtn">Explore Integrations</button>
</div>
<div>
<img width="100%"
src=" https://images.ctfassets.net/k0lk9kiuza3o/7pnp3ZIJHHNMJEYXSCktL/b04ce26084a30501984a14a2058efa36/Integrations-Calendly__1_.png?w=1582&h=1283&q=85&fm=webp"
alt="" />
</div>
</div>
</section>
<!--todo--------------------------------------------- <Make your IT Extension> ----------------------------------------------->
<section id="MakeYourIT_Section" class="sectionsTwo" data-aos="fade-up">
<div class="MakeYourItImage">
<img width="100%"
src="https://images.ctfassets.net/k0lk9kiuza3o/2L9MC4GQzvWk2uSZLbZO29/4d086ff64790b73fc82a63a49ffcf2b5/Calendly-Secure-IT.png?w=1140&h=930&q=85&fm=webp"
alt="" />
</div>
<div class="MakeYourItPara">
<h1 id="MakeYourItHead">Make your IT team feel secure and safe</h1>
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/3xAhNA94ZNW8SgygWcbKAU/3e4c3d91917dded6429a79ad816c854a/Theme_Light__90_.svg"
alt="" />
</div>
<div>
<h3>Centralize billing</h3>
<p>
Hundreds of coworkers use Calendly – bring them all together in
one secure, managed account.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/3xAhNA94ZNW8SgygWcbKAU/3e4c3d91917dded6429a79ad816c854a/Theme_Light__90_.svg"
alt="" />
</div>
<div>
<h3>Standardize how your teams use MyCal</h3>
<p>
Single-sign-on, SCIM, and more make it easy to onboard/offboard
users, mandate passwords, and more.
</p>
</div>
</div>
<br />
<div class="flex">
<div class="designsmolicons">
<img
src="https://images.ctfassets.net/k0lk9kiuza3o/3xAhNA94ZNW8SgygWcbKAU/3e4c3d91917dded6429a79ad816c854a/Theme_Light__90_.svg"
alt="" />
</div>
<div>
<h3>Close more deals</h3>
<p>
Manage how your coworkers create meeting types, send consistent
reminders, and adhere to brand standards.
</p>
</div>
</div>
<br />
<a href="" id="LearnMore">Learn More > </a>
</div>
</section>
<!--todo--------------------------------------------- <Getstarted Extension> ----------------------------------------------->
<section id="Getstarted_Section" class="sectionsTwo" data-aos="fade-up">
<div>
<h1 id="Getstartedhead">Get Started In Seconds</h1>
<br />
<a href="./loginSignup.html"><button class="BlueWhiteBtn">Signup for free</button></a>
<button class="WhiteBlueBtn"><a href="./loginSignup.html">Talk To Sales</a></button>
</div>
</section>
</main>
<!--!--------------------------------------------- Footer ----------------------------------------------->
<footer>
<section id="footer">
<div class="footer_section">
<div class="footerLeft">
<h1 class="footereasy">Easy <br> <label style="color: rgb(2, 67, 159);;"> ahead</label></h1>
<p>We take the work out of connecting with others so you can accomplish more.</p>
<br><br>
<input id="deliveryinp" type="number" placeholder="Enter Pincode"> <button class="BlueWhiteBtn">Check</button>
<br><br>
<img style="width: 80%;" src="icons/footerlogos.jpg" alt="">
<br><br><br>
<img style="width: 100%;" src="icons/googleplay.png" alt="">
</div>
<div class="footerRight">
<div class="footerul">
<div> <b>About</b></div>
<div> About Calendly</div>
<div> Contact Us</div>
<div> Newsroom</div>
<div> Careers</div>
<div> Security</div>
</div>
<div class="footerul">
<div><b>Solutions</b></div>
<div> Customer Success</div>
<div> Sales</div>
<div> Recruiting</div>
<div> Information Technology</div>
<div> Marketing</div>
</div>
<div class="footerul">
<div><b> Popular Features</b></div>
<div> Availability</div>
<div> Team Scheduling</div>
<div> Embed Calendly</div>
<div> Workflows</div>
<div> Admin Management</div>
</div>
<div class="footerul">
<div><b>Support</b></div>
<div>Help Center</div>
<div>Video Tutorials</div>
<div>Cookie Settings</div>
</div>
<div class="footerul">
<div> <b>Add-Ons</b></div>
<div> Download for Chrome</div>
<div> Download for Firefox</div>
</div>
<div class="footerul">
<div> <b>Developers</b></div>
<div> Developer Tools</div>
</div>
</div>
</div>
<div>
<div class="footersecond">
<label for="">Copyright Calendly 2023</label>
<label for="">Privacy / Terms and Conditions</label>
</div>
<div class="footerthird">
<b> Also of interest</b>
<label for=""> Free Scheduling Tool for Individuals</label>
<label for=""> Scheduling for Small and Large Teams</label>
<label for=""> Calendar Connections</label>
</div>
</div>
</section>
</footer>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</body>
</note>
</html>