-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathindex.html
More file actions
816 lines (552 loc) · 21.4 KB
/
Copy pathindex.html
File metadata and controls
816 lines (552 loc) · 21.4 KB
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
<!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>Techx - Make Chat Easy</title>
<!--
- favicon
-->
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;900&display=swap"
rel="stylesheet">
<!--
- preload image
-->
<link rel="preload" as="image" href="./assets/images/hero-banner.png">
</head>
<body id="top">
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<h1>
<a href="#" class="logo">Techx</a>
</h1>
<nav class="navbar container" data-navbar>
<ul class="navbar-list">
<li class="navbar-item">
<a href="#home" class="navbar-link" data-nav-link>Home</a>
</li>
<li class="navbar-item">
<a href="#services" class="navbar-link" data-nav-link>Services</a>
</li>
<li class="navbar-item">
<a href="#features" class="navbar-link" data-nav-link>Features</a>
</li>
<li class="navbar-item">
<a href="#about" class="navbar-link" data-nav-link>About</a>
</li>
<li class="navbar-item">
<a href="#" class="navbar-link" data-nav-link>Blog</a>
</li>
<li class="navbar-item">
<a href="#" class="navbar-link" data-nav-link>Contact Us</a>
</li>
</ul>
</nav>
<button class="btn btn-secondary">Get Started</button>
<button class="nav-toggle-btn" aria-label="Toggle menu" data-nav-toggle-btn>
<ion-icon name="menu-outline" class="menu-icon"></ion-icon>
<ion-icon name="close-outline" class="close-icon"></ion-icon>
</button>
</div>
</header>
<main>
<article>
<!--
- #HERO
-->
<section class="section hero" id="home">
<div class="container">
<figure class="hero-banner">
<img src="./assets/images/hero-banner.png" width="804" height="643" loading="lazy" alt="hero banner"
class="w-100">
</figure>
<div class="hero-content">
<h2 class="h1 hero-title">Make Chat Easy For Today's Digital Customers</h2>
<p class="section-text">
Techx is the ecommerce helpdesk center that turns your customer service into a profit center without any
delay and
increase your sale.
</p>
<form action="" class="hero-form">
<input type="email" name="email_address" placeholder="Enter Your Email" aria-label="Enter Your Email"
required class="input-field">
<button type="submit" class="btn btn-primary">Start Free Trial</button>
</form>
<ul class="hero-list">
<li class="hero-item">
<img src="./assets/images/check-circle.svg" width="16" height="16" loading="lazy" alt="Checkmark icon">
<span class="span">Live Chat</span>
</li>
<li class="hero-item">
<img src="./assets/images/check-circle.svg" width="16" height="16" loading="lazy" alt="Checkmark icon">
<span class="span">Ticketing</span>
</li>
<li class="hero-item">
<img src="./assets/images/check-circle.svg" width="16" height="16" loading="lazy" alt="Checkmark icon">
<span class="span">Knowledge Base</span>
</li>
<li class="hero-item">
<img src="./assets/images/check-circle.svg" width="16" height="16" loading="lazy" alt="Checkmark icon">
<span class="span">Chat pages</span>
</li>
<li class="hero-item">
<img src="./assets/images/check-circle.svg" width="16" height="16" loading="lazy" alt="Checkmark icon">
<span class="span">Team chat</span>
</li>
</ul>
</div>
</div>
</section>
<!--
- #SERVICE
-->
<section class="section service" id="services">
<div class="container">
<h2 class="h2 section-title">Our Solutions For You</h2>
<p class="section-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla imperdiet nulla duis ac. Id massa scelerisque
venenatis,
massa gravida donec orci.
</p>
<ul class="service-list">
<li>
<div class="service-card">
<figure class="card-banner">
<img src="./assets/images/service-1.gif" width="728" height="344" loading="lazy" alt="support"
class="w-100">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">Support</a>
</h3>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla imperdiet nulla duis consectetur
adipiscing elit.
</p>
<a href="#" class="btn-link">
<span class="span">Learn More</span>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</a>
</div>
</div>
</li>
<li>
<div class="service-card">
<figure class="card-banner">
<img src="./assets/images/service-2.gif" width="728" height="344" loading="lazy" alt="Engagement"
class="w-100">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">Engagement</a>
</h3>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla imperdiet nulla duis consectetur
adipiscing elit.
</p>
<a href="#" class="btn-link">
<span class="span">Learn More</span>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</a>
</div>
</div>
</li>
<li>
<div class="service-card">
<figure class="card-banner">
<img src="./assets/images/service-3.gif" width="728" height="344" loading="lazy" alt="Marketing"
class="w-100">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">Marketing</a>
</h3>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla imperdiet nulla duis consectetur
adipiscing elit.
</p>
<a href="#" class="btn-link">
<span class="span">Learn More</span>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</a>
</div>
</div>
</li>
</ul>
</div>
</section>
<!--
- #FEATURES
-->
<section class="section features" id="features">
<div class="container">
<div class="features-content">
<h2 class="h2 section-title">Our Awesome Features To Serve You</h2>
<p class="section-text">
Planning, tracking and delivering your team’s best work has never been easier. We make it easiest for you
through the
software.
</p>
<ul class="features-list">
<li class="features-item">
<img src="./assets/images/features-icon-1.svg" width="26" height="26" loading="lazy" aria-hidden="true"
class="item-icon">
<h3 class="item-title">Automate Instagram</h3>
</li>
<li class="features-item">
<img src="./assets/images/features-icon-2.svg" width="26" height="26" loading="lazy" aria-hidden="true"
class="item-icon">
<h3 class="item-title">Drive Sale</h3>
</li>
<li class="features-item">
<img src="./assets/images/features-icon-3.svg" width="26" height="26" loading="lazy" aria-hidden="true"
class="item-icon">
<h3 class="item-title">Get More Leads</h3>
</li>
<li class="features-item">
<img src="./assets/images/features-icon-4.svg" width="26" height="26" loading="lazy" aria-hidden="true"
class="item-icon">
<h3 class="item-title">Engage Prospects</h3>
</li>
</ul>
</div>
<div class="banner-wrapper">
<figure class="features-banner one">
<img src="./assets/images/features-banner-1.gif" width="600" height="500" loading="lazy"
alt="features image" class="w-100">
</figure>
<figure class="features-banner two">
<img src="./assets/images/features-banner-2.png" width="436" height="311" loading="lazy"
alt="features image" class="w-100">
</figure>
</div>
</div>
</section>
<!--
- #ABOUT
-->
<section class="section about" id="about">
<div class="container">
<h2 class="h2 section-title">What We Do</h2>
<p class="section-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla imperdiet nulla duis ac. Id massa scelerisque
venenatis,
massa gravida donec orci.
</p>
<ul class="about-list">
<li>
<div class="about-card about-card-1">
<figure class="card-banner">
<img src="./assets/images/about-img-1.svg" width="94" height="94" loading="lazy"
alt="Automated Ticket Routing">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">Automated Ticket Routing</a>
</h3>
<p class="card-text">
Lorem ipsum dolor sit amet, consect etur adipiscing elit.
</p>
<a href="#" class="btn-link">
<span class="span">Learn More</span>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</a>
</div>
</div>
</li>
<li>
<div class="about-card about-card-2">
<figure class="card-banner">
<img src="./assets/images/about-img-2.svg" width="94" height="94" loading="lazy"
alt="Workflow Automation">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">Workflow Automation</a>
</h3>
<p class="card-text">
Lorem ipsum dolor sit amet, consect etur adipiscing elit.
</p>
<a href="#" class="btn-link">
<span class="span">Learn More</span>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</a>
</div>
</div>
</li>
<li>
<div class="about-card about-card-3">
<figure class="card-banner">
<img src="./assets/images/about-img-3.svg" width="94" height="94" loading="lazy"
alt="Automated Callback">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">Automated Callback</a>
</h3>
<p class="card-text">
Lorem ipsum dolor sit amet, consect etur adipiscing elit.
</p>
<a href="#" class="btn-link">
<span class="span">Learn More</span>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</a>
</div>
</div>
</li>
<li>
<div class="about-card about-card-4">
<figure class="card-banner">
<img src="./assets/images/about-img-4.svg" width="94" height="94" loading="lazy"
alt="Customer Feedback Surveys">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="#" class="card-title">Customer Feedback Surveys</a>
</h3>
<p class="card-text">
Lorem ipsum dolor sit amet, consect etur adipiscing elit.
</p>
<a href="#" class="btn-link">
<span class="span">Learn More</span>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</a>
</div>
</div>
</li>
</ul>
<p class="section-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Eget gravida facilisis maecenas vitae.
<a href="#" class="btn-link">
<span class="span">View All Features</span>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</a>
</p>
</div>
</section>
<!--
- #STATS
-->
<section class="section stats">
<div class="container">
<figure class="stats-banner">
<img src="./assets/images/stats-banner.png" width="619" height="482" loading="lazy" alt="stats"
class="w-100">
</figure>
<ul class="stats-list">
<li class="stats-item purple">
<h3 class="item-title">
386
<span class="span">million</span>
</h3>
<p class="stats-text">Human Actions Saved On Techx</p>
</li>
<li class="stats-item red">
<h3 class="item-title">
999
<span class="span">million</span>
</h3>
<p class="stats-text">Users Throughout The World</p>
</li>
<li class="stats-item green">
<h3 class="item-title">
200
<span class="span">percent</span>
</h3>
<p class="stats-text">Revenue Growth</p>
</li>
<li class="stats-item yellow">
<h3 class="item-title">
50
<span class="span">software</span>
</h3>
<p class="stats-text">Integration Support In Techx</p>
</li>
</ul>
</div>
</section>
<!--
- #APP
-->
<section class="section app">
<div class="container">
<div class="app-content">
<h2 class="h2 section-title">Download Mobile App To Stay Connected</h2>
<p class="section-text">
Techx Projects gives you the added advantage of several other Techx apps and third party apps through
seamless
integrations.
</p>
<div class="btn-group">
<a href="#" class="btn btn-primary">
<img src="./assets/images/play-store.svg" width="30" height="31" loading="lazy" alt="play store icon">
<span class="span">
GET IT ON
<strong class="strong">Google Play</strong>
</span>
</a>
<a href="#" class="btn btn-secondary">
<img src="./assets/images/apple-store.svg" width="30" height="31" loading="lazy" alt="apple store icon">
<span class="span">
GET IT ON
<strong class="strong">Apple Store</strong>
</span>
</a>
</div>
</div>
<figure class="app-banner">
<img src="./assets/images/app-banner.png" width="748" height="536" loading="lazy" alt="app screenshot"
class="w-100">
</figure>
</div>
</section>
<!--
- #SUPPORT
-->
<section class="section support">
<div class="container">
<div class="support-content">
<h2 class="h2 section-title">24/7 Customer Support</h2>
<p class="section-text">
Our team is here to provide you with personalized and outstanding service. We also offer a range of
self-learning tools
in our support center:
</p>
</div>
<a href="#" class="btn btn-primary">Contact Us Now</a>
</div>
</section>
</article>
</main>
<!--
- #FOOTER
-->
<footer class="footer">
<div class="footer-top section">
<div class="container">
<div class="footer-brand">
<a href="#" class="logo">Techx</a>
<figure class="footer-img">
<img src="./assets/images/footer-img.png" width="264" height="226" loading="lazy" aria-hidden="true"
class="w-100">
</figure>
</div>
<ul class="footer-list">
<li>
<p class="footer-list-title">Services</p>
</li>
<li>
<a href="#" class="footer-link">Web Design</a>
</li>
<li>
<a href="#" class="footer-link">Web Development</a>
</li>
<li>
<a href="#" class="footer-link">Social Marketing</a>
</li>
<li>
<a href="#" class="footer-link">WordPress</a>
</li>
<li>
<a href="#" class="footer-link">Content Writing</a>
</li>
</ul>
<ul class="footer-list">
<li>
<p class="footer-list-title">Quick Links</p>
</li>
<li>
<a href="#" class="footer-link">About Us</a>
</li>
<li>
<a href="#" class="footer-link">Portfolio</a>
</li>
<li>
<a href="#" class="footer-link">Pricing Plan</a>
</li>
<li>
<a href="#" class="footer-link">FAQ</a>
</li>
<li>
<a href="#" class="footer-link">Download Apps</a>
</li>
</ul>
<ul class="footer-list">
<li>
<p class="footer-list-title">Contact Us</p>
</li>
<li class="footer-item">
<img src="./assets/images/contact-icon-1.svg" width="16" height="16" loading="lazy" aria-hidden="true">
<span class="span">
Call Us:
<a href="tel:+3237501234" class="footer-item-link">+(323) 750-1234</a>
</span>
</li>
<li class="footer-item">
<img src="./assets/images/contact-icon-2.svg" width="16" height="16" loading="lazy" aria-hidden="true">
<span class="span">
Address:
<a href="#" class="footer-item-link">Vermont Ave, Los Angeles, CA 90044</a>
</span>
</li>
<li class="footer-item">
<img src="./assets/images/contact-icon-3.svg" width="16" height="16" loading="lazy" aria-hidden="true">
<span class="span">
Mail Us:
<a href="mailto:hello@Techx.com" class="footer-item-link">hello@Techx.com</a>
</span>
</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<p class="copyright">
© 2022 <span class="span">Techx</span>. All rights reserved by <a href="#"
class="copyright-link">codewithsadee</a>
</p>
<ul class="footer-bottom-list">
<li>
<a href="#" class="footer-bottom-link">Privacy Policy</a>
</li>
<li>
<a href="#" class="footer-bottom-link">Security</a>
</li>
<li>
<a href="#" class="footer-bottom-link">Terms & Conditions</a>
</li>
</ul>
</div>
</div>
</footer>
<!--
- #BACK TO TOP
-->
<a href="#top" class="back-top-btn" aria-label="Back to top" data-back-top-btn>
<ion-icon name="chevron-up"></ion-icon>
</a>
<!--
- custom js link
-->
<script src="./assets/js/script.js" defer></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>