-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1062 lines (1009 loc) · 39.4 KB
/
Copy pathindex.html
File metadata and controls
1062 lines (1009 loc) · 39.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
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 name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/locomotive-scroll@3.5.4/dist/locomotive-scroll.css"
/>
<link rel="stylesheet" href="styles.css" />
<title>Mindstack Clone</title>
</head>
<body>
<nav class="navbar">
<a href="#"
><img class="navbar-link-img" src="public/Images/logo.svg" alt=""
/></a>
<button class="navbar-toggler">
☰
</button>
<ul class="navbar-links">
<li>
</li>
<li class="dropdown">
<a class="navbar-link-a" href="#" id="services-link">Services</a>
<div
class="dropdown-content dropdown-content-1"
id="services-dropdown"
>
<div class="dropdown-contents-1">
<a class="dropdown-content-a dropdown-1-big" href="#"
>Product Engineering</a
>
<h5 class="dropdown-1-small">
Your products define you, and we make certain that they meet and
maintain your standards.
</h5>
</div>
<div class="dropdown-contents-1">
<a class="dropdown-content-a dropdown-1-big" href="#"
>UI/UX Strategy</a
>
<h5 class="dropdown-1-small">
Excellent user interface and User Experience convince your
customers to stay. So will our expertise.
</h5>
</div>
<div class="dropdown-contents-1">
<a class="dropdown-content-a dropdown-1-big" href="#"
>MVP for Startups</a
>
<h5 class="dropdown-1-small">
Your product ideas deserve a place in the market, and we're here
to ensure that happens.
</h5>
</div>
</div>
</li>
<li class="dropdown">
<a class="navbar-link-a" href="#" id="expertise-link">Expertise</a>
<div
class="dropdown-content dropdown-content-1"
id="expertise-dropdown"
>
<div class="dropdown-contents-1">
<a class="dropdown-content-a dropdown-1-big" href="#"
>Web Development</a
>
<div class="dropdown-2-small-block">
<ul>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Ruby On Rails</a
>
</li>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Laravel</a
>
</li>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>React</a
>
</li>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Nextjs</a
>
</li>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Nodejs</a
>
</li>
</ul>
</div>
</div>
<div class="dropdown-contents-2">
<a class="dropdown-content-a dropdown-1-big" href="#"
>Mobile Development</a
>
<div class="dropdown-2-small-block">
<ul>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Flutter</a
>
</li>
</ul>
</div>
</div>
<div class="dropdown-contents-3">
<a class="dropdown-content-a dropdown-1-big" href="#">Design</a>
<div class="dropdown-2-small-block">
<ul>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Web Applications</a
>
</li>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Mobile Apps</a
>
</li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Saas Products</a
>
</ul>
</div>
</div>
<div class="dropdown-contents-4">
<a class="dropdown-content-a dropdown-2-big" href="#"
>Machine Learning</a
>
<div class="dropdown-2-small-block">
<ul>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Chatbot Development</a
>
</li>
<li>
<a class="dropdown-content-a dropdown-2-small" href="#"
>Data Engineering and Pipelines</a
>
</li>
</ul>
</div>
</div>
</div>
</li>
<li class="dropdown">
<a class="navbar-link-a" href="#" id="industries-link">Industries</a>
<div
class="dropdown-content dropdown-content-1"
id="industries-dropdown"
>
<div class="dropdown-contents-1">
<div class="dropdown-1-small-block">
<ul>
<li>
<a class="dropdown-content-a dropdown-3-big" href="#"
>Finance & Banking</a
>
</li>
<li>
<a class="dropdown-content-a dropdown-3-big" href="#"
>Logistics & Supply Chain</a
>
</li>
</ul>
</div>
</div>
</div>
</li>
<li><a class="navbar-link-a" href="#">Case Studies</a></li>
<li class="dropdown">
<a class="navbar-link-a" href="#" id="company-link">Company</a>
<div
class="dropdown-content dropdown-content-1"
id="company-dropdown"
>
<div class="dropdown-contents-1">
<a class="dropdown-content-a dropdown-4-big" href="#">About Us</a>
<h5 class="dropdown-4-small">
<ul>
<li>
Whether bringing new amazing products and services to
market.
</li>
</ul>
</h5>
</div>
<div class="dropdown-contents-2">
<a class="dropdown-content-a dropdown-4-big" href="#">Culture</a>
<h5 class="dropdown-4-small">See how we work & what we value</h5>
</div>
<div class="dropdown-contents-3">
<a class="dropdown-content-a dropdown-4-big" href="#">Careers</a>
<h5 class="dropdown-4-small">Join a team of problem solvers</h5>
</div>
<div class="dropdown-contents-4">
<a class="dropdown-content-a dropdown-4-big" href="#"
>Contact Us</a
>
<h5 class="dropdown-4-small">
Reach out & we would be happy to connect.
</h5>
</div>
</div>
</li>
<li><a class="navbar-link-a" href="#">Blog</a></li>
<li><button class="navbar-link-btn">Contact Us</button></li>
</ul>
</nav>
<div id="main">
<div class="bg">
<header class="header">
<div class="subhead">
<h5>- The Backbone Of Your Backend</h5>
<h1 class="">
Pioneering web & mobile product engineering. Always Brilliant,
Always On Time
</h1>
<button class="btn" style="margin-top: 40px">
<h5 class="smallText">
Tell us about your project
<img src="public/images/arrow-right.svg" alt="" />
</h5>
</button>
</div>
<div class="slidebox">
<div class="slideshow">
<div class="slide">
<img src="/public/Images/8-years@2x.png" alt="" />
</div>
<div class="slide">
<img src="/public/Images/clutch@2x.png" alt="" />
</div>
<div class="slide">
<img src="/public/Images/intellectual-property@2x.png" alt="" />
</div>
</div>
</div>
</header>
</div>
<div class="bix-div">
<h1 class="big-text anim" data-scroll
data-scroll-speed="1.1">
Don’t settle for tech that deals with <br> an iceberg-tip, because
<span class="bold">Mindstack</span> <br> works at the roots
</h1>
</div>
<div class="elem anim-1"data-scroll
data-scroll-speed="1.1">
<div class="elem-1 elements">
<img
class="elem-img"
src="public/Images/product-engineering-icon.svg"
alt=""
/><br />
<a class="fig-text" href="index.html">Product Engineering</a>
<h5 class="inner-text">
Your products define you, and we make certain that they meet and
maintain your standards.
</h5>
</div>
<div class="elem-2 elements">
<img class="elem-img" src="public/Images/ux-icon.svg" alt="" /><br />
<a class="fig-text" href="index.html"
>UI/UX<br />
Strategy</a
>
<h5 class="inner-text">
Excellent User Interface and User Experience convince your customers
to stay. So will our expertise.
</h5>
</div>
<div class="elem-3 elements">
<img class="elem-img" src="public/Images/mvp-icon.svg" alt="" /><br />
<a class="fig-text" href="index.html">MVP for startups</a>
<h5 class="inner-text">
Your product ideas deserve a place in the market, and we’re here to
ensure that happens.
</h5>
</div>
</div>
<div class="testimonials" data-scroll data-scroll-speed="2">
<div class="testimonial active">
<div class="images">
<div class="photo-part">
<img class="overlap-image" src="public/Images/testimonial-pattern.png" alt="Pattern Image" />
<img class="person" src="public/Images/priya.jpg" alt="Priya Malani" />
</div>
</div>
<div class="words">
<img class="quote" src="public/Images/open-quote.png" alt="Open Quote" />
<h4 class="quoted">
They delivered a great site that’s already seeing a high
conversion rate. While it’s challenging to make a financial firm
look engaging and fun, they’ve managed to pull it off in their
delivery of our website
</h4>
<h4 class="is">
<span class="by">Priya Malani, </span><br />Founder of Stash Wealth
</h4>
<button class="testi">View Full Review</button>
</div>
<button class="left" onclick="toggleTestimonials()">
<img src="public/Images/chevron-left.png" alt="Left Arrow" />
</button>
<button class="right" onclick="toggleTestimonials()">
<img src="public/Images/chevron-right.png" alt="Right Arrow" />
</button>
</div>
<div class="testimonial">
<div class="images">
<div class="photo-part">
<img class="overlap-image" src="public/Images/testimonial-pattern.png" alt="Pattern Image" />
<img class="person" src="public/Images/sean.jpeg" alt="Sean Singh" />
</div>
</div>
<div class="words">
<img class="quote" src="public/Images/open-quote.png" alt="Open Quote" />
<h4 class="quoted">
I would recommend them for highly technical projects which also
need creative and solution-oriented thinking.
</h4>
<h4 class="is">
<span class="by">Sean Singh, </span><br />Product Design & Technology Consultant, UrbanSoul
</h4>
<button class="testi">View Full Review</button>
</div>
<button class="left" onclick="toggleTestimonials()">
<img src="public/Images/chevron-left.png" alt="Left Arrow" />
</button>
<button class="right" onclick="toggleTestimonials()">
<img src="public/Images/chevron-right.png" alt="Right Arrow" />
</button>
</div>
</div>
<div class="block-2" data-scroll
data-scroll-speed="1.1">
<h5 class="block-2-small-top">-Our Services</h5>
<h1 class="block-2-big">
We do not fix your tech, we <span class="bold">upgrade</span> it
</h1>
<h4 class="block-2-small">
As we work at the roots, we locate your problems and present
favourable solutions that strengthen your foundation. Don’t want to
start off weak, do we?
</h4>
</div>
<div class="boxes" data-scroll
data-scroll-speed="1.1">
<div class="box">
<img
src="public/Images/product-engineering-icon.svg"
height="50px"
alt=""
/><br />
<h4 class="box-fig-text" href="index.html">Web Development</h4>
<h5 class="boxes-inner-text">
Blending in is too mainstream! We believe that companies make the
best first impression through their websites, and we don’t want you
to miss this opportunity. We develop engaging websites for both
mobile and desktop versions.
</h5>
</div>
<div class="box">
<img
src="public/Images/ux-design-icon.svg"
height="50px"
alt=""
/><br />
<h4 class="box-fig-text" href="index.html">UI/UX Design</h4>
<h5 class="boxes-inner-text">
Your users are the judge of you! How you optimize your product
determines the mass of your audience. And we want to ensure that
your clientele not only enjoys your product, but also stays loyal to
you. Whether it is user experience or user interface, we can help
present the best version of your brand to your audience.
</h5>
</div>
<div class="box">
<img
src="public/Images/chatbot-icon.svg"
height="50px"
alt=""
/><br />
<h4 class="box-fig-text" href="index.html">Chatbots</h4>
<h5 class="boxes-inner-text">
It’s time to revamp customer support! We have a soft corner for AI &
Machine Learning tech - not just because they’re cool, but also due
to their efficiency. Whether meant for B2B, e-commerce, or IT &
Finance, our chat boxes can carry conversations smoothly!
</h5>
</div>
<div class="box">
<img
src="public/Images/mobile-app-icon.svg"
height="50px"
alt=""
/><br />
<h4 class="box-fig-text" href="index.html">Mobile Apps</h4>
<h5 class="boxes-inner-text">
Be a finger-tap away! Mobile apps are easily accessible and allow
customers to interact with their favourite brands more frequently.
Facilitate your clientele with our state-of-the-art and interactive
apps that make use of native/hybrid mobile app solutions. Now you
can be everywhere by just being in pockets!
</h5>
</div>
<div class="box">
<img src="public/Images/devops-icon.svg" height="50px" alt="" /><br />
<h4 class="box-fig-text" href="index.html">Cloud / DevOps</h4>
<h5 class="boxes-inner-text">
Space is a myth, really! Our dexterity also lies in developing cloud
apps for businesses so that they are not limited by space. With the
help of a cloud app, you can back up and access your business from
any device.
</h5>
</div>
<div class="box">
<img
src="public/Images/testing-icon.svg"
height="50px"
alt=""
/><br />
<h4 class="box-fig-text" href="index.html">Software Testing</h4>
<h5 class="boxes-inner-text">
No more defects! Your software system’s design may be impeccable,
but there are faults that can escape many eyes. But not at
Mindstack! We scan your software for bugs and errors to check its
functionality, so that your audience enjoys a hassle-free
experience!
</h5>
</div>
</div>
<div class="block-3" data-scroll
data-scroll-speed="1.1">
<img class="block-3-bg" src="public/Images/testimonial-bg.jpg" alt="" />
<div class="block-3-text">
<h5 class="block-3-small-top">-Why we are different</h5>
<h1 class="block-3-big">
We <span class="bold">believe in minds</span> that cause an impact
</h1>
<h4 class="block-3-small">
Our team is comprised of dedicated individuals with unique quirks
that add a charm to their professional output. At Mindstack, we
value skill and curiosity alike, because that’s what keeps a person
going! We find such people and we give them a masterly edge.
</h4>
<button class="btn-block-3" style="margin-top: 10px">
<h5 class="block-3-smallText">
Tell us about your project
<img
src="public/images/arrow-right.svg"
style="margin-left: 10px"
alt=""
/>
</h5>
</button>
</div>
</div>
<div class="boxes-1" data-scroll
data-scroll-speed="1.1">
<div class="box-1">
<img class="boximg" src="public/Images/cross-industry-expertise.jpg" alt="" />
<h3 class="box-1-text">Cross-Industry Expertise</h3>
<a href=""
><img class="box-1-img" src="public/Images/arrow-right.svg" alt=""
/></a>
</div>
<div class="box-1">
<img class="boximg" src="public/Images/deep-expertise-and-leadership.jpg" alt="" />
<h3 class="box-1-text">Deep Expertise & Leadership</h3>
<a href=""
><img class="box-1-img" src="public/Images/arrow-right.svg" alt=""
/></a>
</div>
<div class="box-1">
<img class="boximg" src="public/Images/dedicated-it-solutions.jpg" alt="" />
<h3 class="box-1-text">Dedicated IT Solution</h3>
<a href=""
><img class="box-1-img" src="public/Images/arrow-right.svg" alt=""
/></a>
</div>
</div>
<div class="counter-sec" data-scroll
data-scroll-speed="1.1">
<div class="counter-box">
<div class="counter" data-target="100">0</div>
<span class="plus">+</span>
<h5 class="counter-text">Happy Clients</h5>
<div class="vertical-line"></div>
</div>
<div class="counter-box">
<div class="counter" data-target="300">0</div>
<span class="plus">+</span>
<h5 class="counter-text">Projects Completed</h5>
<div class="vertical-line one"></div>
</div>
<div class="counter-box">
<div class="counter" data-target="75">0</div>
<span class="plus2">%</span>
<h5 class="counter-text">Repeat Customers</h5>
<div class="vertical-line"></div>
</div>
<div class="counter-box">
<div class="counter" data-target="25">0</div>
<span class="plus">+</span>
<h5 class="counter-text">Team Members</h5>
</div>
</div>
<div class="block-4-text" data-scroll
data-scroll-speed="1.1">
<h5 class="block-4-small-top">-Success stories</h5>
<h1 class="block-4-big">
It’s not a success if there’s only
<span class="bold">one</span> winner
</h1>
<h4 class="block-4-small">
We have worked relentlessly to step up our game and enter the
competitive realm, and the benefit was never ours alone. Our success
stories are comprised of our clients’ success stories, and that’s
something we massively cherish.
</h4>
</div>
<div class="carousel-outer" data-scroll
data-scroll-speed="1.1">
<button class="left car-left">
<img src="public/Images/chevron-left.png" alt="" />
</button>
<div class="carousel">
<div class="carousel-track">
<div class="carousel-ele">
<div class="item-1">
<img
class="item-1-img car-img"
src="public/Images/paygro.png"
alt=""
/>
<button class="item-1-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-2">
<img
class="item-2-img car-img"
src="public/Images/Neosurge.png"
alt=""
/>
<button class="item-2-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-3">
<img
class="item-3-img car-img"
src="public/Images/noren.png"
alt=""
/>
<button class="item-3-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-4">
<img
class="item-4-img car-img"
src="public/Images/finsens.png"
alt=""
/>
<button class="item-4-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-5">
<img
class="item-5-img car-img"
src="public/Images/phfl.png"
alt=""
/>
<button class="item-5-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-6">
<img
class="item-6-img car-img"
src="public/Images/simplus.png"
alt=""
/>
<button class="item-6-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-1">
<img
class="item-1-img car-img"
src="public/Images/paygro.png"
alt=""
/>
<button class="item-1-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-2">
<img
class="item-2-img car-img"
src="public/Images/Neosurge.png"
alt=""
/>
<button class="item-2-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-3">
<img
class="item-3-img car-img"
src="public/Images/noren.png"
alt=""
/>
<button class="item-3-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-4">
<img
class="item-4-img car-img"
src="public/Images/finsens.png"
alt=""
/>
<button class="item-4-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-5">
<img
class="item-5-img car-img"
src="public/Images/phfl.png"
alt=""
/>
<button class="item-5-btn">View Case Study</button>
</div>
</div>
<div class="carousel-ele">
<div class="item-6">
<img
class="item-6-img car-img"
src="public/Images/simplus.png"
alt=""
/>
<button class="item-6-btn">View Case Study</button>
</div>
</div>
</div>
</div>
<button class="right car-right">
<img src="public/Images/chevron-right.png" alt="" />
</button>
</div>
<div class="block-5" data-scroll
data-scroll-speed="1.1">
<h5 class="block-5-small-top">-Mindstack Blog</h5>
<h1 class="block-5-big">
From the desk of our proficient
<span class="bold">contributors.</span>
</h1>
</div>
<div class="container" data-scroll
data-scroll-speed="1.1">
<div class="card-container slider-container">
<button class="left car-left prev">
<img src="public/Images/chevron-left.png" alt="" />
</button>
<div class="card-content slider">
<div class="slider-track">
<article class="card-article slider-card">
<div class="card-image">
<img
src="public/Images/ecommerce-banner.jpg"
alt=""
class="card-image-img"
/>
</div>
<div class="card-data">
<a href="" class="card-name-a"
><h5 class="card-name">Create a website</h5></a
>
<a href="" class="card-des-a"
><h4 class="card-des">
How to build an ecommerce website from scratch
</h4></a
>
</div>
</article>
<article class="card-article slider-card">
<div class="card-image">
<img
src="public/Images/apli-intergration.jpg"
alt=""
class="card-image-img"
/>
</div>
<div class="card-data">
<a href="" class="card-name-a"
><h5 class="card-name">Create a website</h5></a
>
<a href="" class="card-des-a"
><h4 class="card-des">
What You Should Know About API integration
</h4></a
>
</div>
</article>
<article class="card-article slider-card">
<div class="card-image">
<img
src="public/Images/rapid-app-devlopment.jpg"
alt=""
class="card-image-img"
/>
</div>
<div class="card-data">
<a href="" class="card-name-a"
><h5 class="card-name">Software Process & Tools</h5></a
>
<a href="" class="card-des-a"
><h4 class="card-des">
Everything you need to know about rapid application
development
</h4></a
>
</div>
</article>
<article class="card-article slider-card">
<div class="card-image">
<img
src="public/Images/770.jpg"
alt=""
class="card-image-img"
/>
</div>
<div class="card-data">
<a href="" class="card-name-a"
><h5 class="card-name">Chatbot development</h5></a
>
<a href="" class="card-des-a"
><h4 class="card-des">
How Much Does Artificial Intelligent Chatbot Cost?
</h4></a
>
</div>
</article>
<article class="card-article slider-card">
<div class="card-image">
<img
src="public/Images/pwa-2.jpg"
alt=""
class="card-image-img"
/>
</div>
<div class="card-data">
<a href="" class="card-name-a"
><h5 class="card-name">Create a website</h5></a
>
<a href="" class="card-des-a"
><h4 class="card-des">
Progressive Web Apps Is Bound To Make An Impact In Your
Business
</h4></a
>
</div>
</article>
<article class="card-article slider-card">
<div class="card-image">
<img
src="public/Images/12-questins.png"
alt=""
class="card-image-img"
/>
</div>
<div class="card-data">
<a href="" class="card-name-a"
><h5 class="card-name">Create a website</h5></a
>
<a href="" class="card-des-a"
><h4 class="card-des">
12 Major Questions to ask before developing a website
</h4></a
>
</div>
</article>
<article class="card-article slider-card">
<div class="card-image">
<img
src="public/Images/custom-app.jpg"
alt=""
class="card-image-img"
/>
</div>
<div class="card-data">
<a href="" class="card-name-a"
><h5 class="card-name">Mobile apps</h5></a
>
<a href="" class="card-des-a"
><h4 class="card-des">
why should you opt custom app for your business
</h4></a
>
</div>
</article>
<article class="card-article slider-card">
<div class="card-image">
<img
src="public/Images/web.jpeg"
alt=""
class="card-image-img"
/>
</div>
<div class="card-data">
<a href="" class="card-name-a"
><h5 class="card-name">Create a website</h5></a
>
<a href="" class="card-des-a"
><h4 class="card-des">
How much does it cost to make a website in India
</h4></a
>
</div>
</article>
<article class="card-article slider-card">
<div class="card-image">
<img
src="public/Images/ruby-on-rails-3-featured-image.png"
alt=""
class="card-image-img"
/>
</div>
<div class="card-data">
<a href="" class="card-name-a"
><h5 class="card-name">Create a website</h5></a
>
<a href="" class="card-des-a"
><h4 class="card-des">
10 Incredibly useful advantages of ruby on rails you must
know
</h4></a
>
</div>
</article>
</div>
</div>
<button class="right car-right next">
<img src="public/Images/chevron-right.png" alt="" />
</button>
</div>
</div>
<div class="block-6" >
<img
class="block-6-bg"
width="1900px"
height="600px"
src="public/Images/testimonial-bg.jpg"
alt=""
/>
<div class="block-6-content">
<div class="block-6-text">
<h5 class="block-6-small-top">-Get in Touch</h5>
<h1 class="block-6-big">
Want to discover more about <span class="bold">our services</span>?
</h1>
<h4 class="block-6-small">
Contact us by filling in your details, and we’ll get back to you
within 24 hours with more information on our next steps. In the
meantime, you can check out our case studies and our blog
</h4>
</div>
<div class="form">
<h5 class="form-small">Name</h5>
<input
style="width: 400px; height: 45px; border: 1px solid gainsboro"
class="input-box"
type="name"
placeholder="Enter name"
/>
<h5 class="form-small">Email Address</h5>
<input
style="width: 400px; height: 45px; border: 1px solid gainsboro"
class="input-box"
type="email"
placeholder="Enter email address"
/>
<h5 class="form-small">Phone number</h5>
<input
style="width: 400px; height: 45px; border: 1px solid gainsboro"
class="input-box"
type="number"
maxlength="10"
placeholder="Enter phone number"
/>
<h5 class="form-small">Message</h5>
<textarea
style="width: 400px; height: 80px; border: 1px solid gainsboro"
class="input-box"
rows="2"
cols="23"
></textarea>
<button class="btn-block-3" style="margin-top: 10px">
<h5 class="block-6-smallText">
Contact us
<img
src="public/images/arrow-right.svg"
style="margin-left: 10px"
alt=""
/>
</h5>
</button>
</div>
</div>
</div>
<footer class="anim" data-scroll
data-scroll-speed="1">
<div class="f-container">
<div class="footer-column">
<h4 class="footer-heading">Company</h4>
<ul class="footer-list">
<li><a href="#">Why Mindstack</a></li>
<li><a href="#">Case Studies</a></li>
<li><a href="#">Culture</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
<div class="footer-column">
<h4 class="footer-heading">Services</h4>
<ul class="footer-list">
<li><a href="#">Web Development</a></li>
<li><a href="#">Ruby on Rails</a></li>
<li><a href="#">React</a></li>
<li><a href="#">Flutter</a></li>
<li><a href="#">Web Applications Design</a></li>
<li><a href="#">Mobile Apps Design</a></li>