-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathindex.html
1509 lines (1353 loc) · 57.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" />
<link rel="shortcut icon" href="assets/alogo.png" type="image/x-icon" />
<script src="./chatwoot.js"></script>
<title>Clone-IT</title>
</head>
<body>
<main class="main">
<!-- navbar section start -->
<nav class="navbar d-flex">
<!-- <a href="/index-clone-it/" class="logo">Clone-<span>IT</span></a> -->
<div class="navbar-container d-flex">
<a href="#" class="logo">
<img src="assets/alogo.png" alt="" />
<span>lone-IT</span>
</a>
<div class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<div class="navbar-links">
<ul>
<li>
<a href="#" class="menuLink">
<!--<i class="fa fa-home symbol"></i>--> <span class="text">Home</span>
</a>
</li>
<li>
<a href="#about" class="menuLink">
<!--<i class="fa fa-users symbol"></i>-->
<span class="text">About</span>
</a>
</li>
<li>
<a href="#projects" class="menuLink">
<!--<i class="fa fa-laptop symbol"></i>-->
<span class="text">Projects</span>
</a>
</li>
<li>
<a href="#connect" class="menuLink">
<!--<i class="fa fa-address-card symbol"></i>-->
<span class="text">Connect</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- navbar section ends -->
<!-- header section start -->
<header class="header">
<div class="grid-container">
<div class="row">
<h2>Clones of awesome websites</h2>
<p>
Great clones of some awesome websites which are used globally by
people are found here..
</p>
<div class="links">
<a href="#projects">Explore </a>
<a href="https://github.com/Rayman-Sodhi/Clone-IT" target="_blank"><i class="fa fa-github"></i> Github</a>
</div>
</div>
<div class="row">
<img src="assets/vector.png" alt="header image" class="header-img" />
</div>
</div>
</header>
<!-- header section ends -->
<!-- about section start -->
<section class="about" id="about">
<h2>About Us</h2>
<div class="card-container">
<div class="info-left">
<p>
This platform is built by passionate and talented Open source
enthusiastic web developers to make Collabrative work fun and easy
for the newbies!
</p>
<br />
<p>
The idea behind this project is to learn how different websites
are made by directly cloning them using the same layout and design
. New contributors can add more websites to the list and suggest
new features in the existing ones .Also there is scope to
introduce new features in websites and thus creating a upgraded
version of their clone.
</p>
</div>
<div class="info-right">
<img src="assets/group.png" alt="clone-it-info-repo " />
</div>
</div>
<div class="card-container">
<div class="info-right">
<img src="assets/logo-2.png" alt="clone-it-info-repo " />
</div>
<div class="info-left">
<p>
Script Winter of Code is an open-source program envisioned by the
Script Foundation. It aims to bring students into the world of
open source development and see the power of unified
problem-solving in real-time.
</p>
<br />
<p>
The projects that we will host have been carefully hand-picked to
invigorate creative thinking and encourage collaboration among all
participants. The students will be guided by experienced mentors
throughout their journey. They will learn the skills essential in
the world of programming, all the while developing a deep
appreciation for the world of open-source.
</p>
</div>
</div>
<div class="card-container">
<div class="info-left">
<p>
GirlScript Summer Of Code is a three-month-long Open-Source
Program conducted every summer by the Girlscript Foundation. With
constant efforts, participants contribute to numerous projects
under the extreme guidance of skilled mentors over these months.
</p>
<br>
<p>
The GirlScript Foundation aims to change lives by imparting tech
education and relevant skills while fostering diversity.
GirlScript Summer Of Code has witnessed active participation over
the years, and the 2022 edition aims to carry the legacy with a
promising impact.
</p>
</div>
<div class="info-right">
<img src="assets/GSSOC.png" alt="clone-it-info-repo " />
</div>
</div>
<div class="card-container">
<div class="info-left">
<p>
The HackClub RAIT Summer Of Code is a two-month open-source programme run by the HackClub RAIT this summer.
Over the course of two months, participants contribute to a variety of projects under the close supervision
of competent mentors. Students learn to contribute to real-world projects from the comfort of their own homes
as a result of this exposure. HackClub RAIT Summer of Code anticipates enthusiastic involvement with the goal
of flourishing in the exciting open source culture so that we may continue our initiative with a positive impact.
</p>
<br>
<p>
HackClub RAIT is here to help you hack! here we don't mean to hack into people's bank account but to be creative
and solve real-world problems. In case you haven't contributed to open-source if you're anxious about it?
Well, now you don't have to worry much about it cause HackClub RAIT is here to focus essentially on open-source.
</p>
</div>
<div class="info-right">
<img src="assets/hackclubrait.jpeg" alt="clone-it-info-repo " />
</div>
</div>
<!-- <div class="info d-flex center">
<div class="info-left">
<p>
This platform is built by passionate and talented Open source
enthusiastic web developers to make Collabrative work fun and easy
for the newbies!
</p>
<br />
<p>
The idea behind this project is to learn how different websites
are made by directly cloning them using the same layout and design
. New contributors can add more websites to the list and suggest
new features in the existing ones .Also there is scope to
introduce new features in websites and thus creating a upgraded
version of their clone.
</p>
</div>
<div class="info-right">
<img src="assets/group.png" alt="clone-it-info-repo " />
</div>
</div> -->
<!--<div class="info d-flex center">
<div class="info-right">
<img src="assets/logo-2.png" alt="clone-it-info-repo " />
</div>
<div class="info-left">
<p>
Script Winter of Code is an open-source program envisioned by the
Script Foundation. It aims to bring students into the world of
open source development and see the power of unified
problem-solving in real-time.
</p>
<br />
<p>
The projects that we will host have been carefully hand-picked to
invigorate creative thinking and encourage collaboration among all
participants. The students will be guided by experienced mentors
throughout their journey. They will learn the skills essential in
the world of programming, all the while developing a deep
appreciation for the world of open-source.
</p>
</div>
</div>
<div class="info d-flex center">
<div class="info-left">
<p>
GirlScript Summer Of Code is a three-month-long Open-Source
Program conducted every summer by the Girlscript Foundation. With
constant efforts, participants contribute to numerous projects
under the extreme guidance of skilled mentors over these months.
</p>
<p>
The GirlScript Foundation aims to change lives by imparting tech
education and relevant skills while fostering diversity. Their
tremendous endeavors curb the gap to offer a technophilic
environment and revolutionize the tech domain by promoting,
sharing, and spreading knowledge equally to every individual.
GirlScript Summer Of Code has witnessed active participation over
the years, and the 2022 edition aims to carry the legacy with a
promising impact.
</p>
</div>
<div class="info-right">
<img src="assets/GSSOC.png" alt="clone-it-info-repo " />
</div>
</div>
</section>-->
</main>
<!-- about section ends -->
<!-- projects section start -->
<section class="projects-background" id="projects">
<h2>Projects</h2>
<div class="projects center">
<div class="searchbar-container">
<input type="text" id="searchbar" placeholder="Enter your favourite clone..." />
<button id="searchbtn" onclick="func()">
<i class="fa fa-search" aria-hidden="true"></i>
</button>
</div>
<script>
function func() {
var input, filter;
input = document.getElementById("searchbar");
filter = input.value.toUpperCase();
const filterMapping = {
"2048 CLONE": "https://624714958b723a4787873a0c--precious-strudel-0f88aa.netlify.app/",
"AIRBNB CLONE": "https://mrjoy832.github.io/AIRBNB/",
"AMAZON CLONE": "#",
"APPLE CLONE": "https://pranai2518.github.io/Apple-clone/",
"AVENGERS PUZZLE GAME": "https://mrjoy832.github.io/Avengers-Puzzle-Game/",
"BEHANCE CLONE": "#",
"CANDY CRUSH CLONE": "https://adit0507.github.io/Candy-Crush/",
"CODEPEN CLONE": "https://codepen-clone-mahiiverse1.netlify.app/",
"COIN TOSS CLONE": "https://mrjoy832.github.io/coin-Toss/",
"DINO GAME CLONE": "https://mrjoy832.github.io/DINO-GAMES-CLONE/",
"DISCORD CLONE": "https://htmlpreview.github.io/?https://github.com/XZANATOL/Clone-IT/blob/Discord_Clone/Discord_App_Clone/home.html",
"DISNEY PLUS CLONE": "https://mrjoy832.github.io/Disney-/",
"FACEBOOK CLONE": "https://vaib215.github.io/Facebook-Clone/",
"FLIPKART CLONE": "https://rayman-sodhi.github.io/Flipkart-Clone/",
"FRESHWORKS CLONE": "#",
"GITHUB CLONE": "https://htmlpreview.github.io/?https://github.com/XZANATOL/Clone-IT/blob/Github_Clone/Github_Homepage_Clone/index.html",
"GMAIL CLONE": "#",
"GOOGLE CLONE": "https://quizzical-payne-d3e222.netlify.app/",
"GOOGLE KEEP CLONE": "https://ajoe12.github.io/Google-Keep-Clone/",
"GOOGLE SHOPPING CLONE": "#",
"GRAMMARLY CLONE": "https://mrjoy832.github.io/Grammarly/",
"HACKERRANK CLONE": "https://sulagna-dutta-roy.github.io/Hackerrank-clone",
"HINDUSTAN PETROLEUM": "https://dsasaank-369.github.io/hpclone/",
"HULU CLONE": "https://harshit995.github.io/hulu-clone/",
"INSHORTS CLONE": "https://cloninginshorts.netlify.app",
"INSTAGRAM CLONE": "https://rakesh9100.github.io/InstagramClone/",
"KALI OS CLONE": "https://kali-org-clone.vercel.app/",
"KFC CLONE": "https://rayman-sodhi.github.io/KFC-Clone/",
"LINKEDIN CLONE": "https://rayman-sodhi.github.io/Connected-In/",
"LINKTREE CLONE": "https://clonelinktree.netlify.app/",
"MAC OS CLONE": "https://mrjoy832.github.io/MAC-OS-/",
"MICROSOFT CLONE": "https://19arnab190201.github.io/Microsoft-Clone/",
"MICROSOFT TEAMS CLONE": "#",
"MYNTRA CLONE": "https://d1-myntra-clone.netlify.app/",
"NETFLIX CLONE": "https://netflix-clone-tau-livid.vercel.app/",
"NEWS EXTENSION CLONE": "https://mrjoy832.github.io/Latest-News/",
"NYKAA CLONE": "#",
"OLA CLONE": "#",
"OLX CLONE": "https://sulagna-dutta-roy.github.io/OLX-Clone",
"PINTEREST CLONE": "https://vaibhavupreti.github.io/pinterest-static/",
"PLURALSIGHT CLONE": "https://mrjoy832.github.io/PluralSight_clone/",
"QUORA CLONE": "https://rhydham2809.github.io/Qoura-Clone/",
"REEBOK CLONE": "https://mrjoy832.github.io/reebok/",
"SLACK CLONE": "https://chatifyslack.netlify.app/",
"SPACE-X CLONE": "#",
"SPOTIFY CLONE": "https://spotify-clone-khaki-six.vercel.app/",
"STARBUCKS CLONE": "https://girlwithasmile.github.io/Starbucks-clone/",
"TESLA CLONE": "https://ayushsleeping-teslaclone.netlify.app",
"TINDER CLONE": "#",
"TRIP ADVISOR CLONE": "#",
"UBER EATS CLONE": "https://mrjoy832.github.io/Uber-Eats/",
"UNSPLASH CLONE": "#",
"W3SCHOOL CLONE": "https://w3-frontend.netlify.app/",
"WHATSAPP CLONE": "https://whatsapp-ui-static.netlify.app/",
"WIKIPEDIA CLONE": "https://mrjoy832.github.io/WikiPedia_/",
"WINDOWS11 CLONE": "https://windows-11-static.netlify.app/",
"WORDLE CLONE": "#",
"YOUTUBE CLONE": "https://anveshajain19.github.io/YOUTUBE-CLONE/",
"ZARA CLONE": "https://zara-clone-static.netlify.app/",
"ZOMATO CLONE": "https://akanksha-sen.github.io/Zomato-clone/",
"ZOOM CLONE": "https://rayman-video-app.herokuapp.com/",
}
if (filterMapping[filter] != undefined) {
window.open(filterMapping[filter]);
};
if (filterMapping[filter] != undefined) {
window.open(filterMapping[filter]);
}
}
</script>
<ul class="projects-container">
<!-- 2048 Clone -->
<li>
<a href="https://624714958b723a4787873a0c--precious-strudel-0f88aa.netlify.app/"
class="card twozero_foureight" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>2048 Clone</h3>
<p>
2048 is a single-player sliding tile puzzle video game
written by Italian web developer Gabriele Cirulli and
published on GitHub.
</p>
</div>
</div>
</a>
</li>
<!-- Airbnb Clone -->
<li>
<a href="https://mrjoy832.github.io/AIRBNB/" class="card airbnb" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Airbnb Clone</h3>
<p>
Airbnb, Inc. is an American company that operates an online
marketplace for lodging, primarily homestays for vacation
rentals, and tourism activities
</p>
</div>
</div>
</a>
</li>
<!-- Amazon Clone -->
<li>
<a href="#" class="card amazon" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Amazon Clone</h3>
<p>
Amazon.com, Inc. is an American multinational technology company which focuses on e-commerce,
cloud computing, digital streaming, and artificial intelligence.
</div>
</div>
</a>
</li>
<!-- Apple Clone -->
<li>
<a href="https://pranai2518.github.io/Apple-clone/" class="card apple" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Apple Clone</h3>
<p>
Apple India website is a online official store which sells
all the Apple products including the MacBooks, iPad series,
Apple Watch and iPhones.
</p>
</div>
</div>
</a>
</li>
<!--Avengers Puzzle Game-->
<li>
<a href="https://mrjoy832.github.io/Avengers-Puzzle-Game/" class="card avengers" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Avengers Puzzle Clone</h3>
<p>
Avengers Puzzle Game
</p>
</div>
</div>
</a>
</li>
<!-- Behance Clone -->
<li>
<a href="#" class="card behance" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Behance Clone</h3>
<p>
Behance is a social media platform owned by Adobe whose main focus is to showcase and discover
creative
work. Behance was founded by Matias Corea and Scott Belsky in November 2005. It was acquired by Adobe
in December 2012. As of July 2018, Behance had over 10 million members
</p>
</div>
</div>
</a>
</li>
<!--CANDY CRUSH CLONE-->
<li>
<a href="https://adit0507.github.io/Candy-Crush/" class="card candy" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Candy Crush Clone</h3>
<p>
Candy Crush Saga is a free-to-play match-three puzzle video
game released by King on April 12, 2012, originally for
Facebook; other versions for iOS, Android, Windows Phone,
and Windows 10 followed.
</p>
</div>
</div>
</a>
</li>
<!--Codepen Clone-->
<li>
<a href="https://codepen-clone-mahiiverse1.netlify.app/" class="card codepen" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Codepen Clone</h3>
<p>
CodePen is an online community for testing and showcasing user-created HTML, CSS
and JavaScript code snippets. It functions as an online code editor and
open-source learning environment.
</p>
</div>
</div>
</a>
</li>
<!-- Coin Toss Clone -->
<li>
<a href="https://mrjoy832.github.io/coin-Toss/" class="card coin" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Coin Toss Clone</h3>
<p>
Coin flipping, coin tossing, or heads or tails is the practice of throwing a coin
in the air and checking which side is showing when it lands, in order to choose
between two alternatives, heads or tails, sometimes used to resolve a dispute
between two parties.
</p>
</div>
</div>
</a>
</li>
<!-- Dino Game Clone -->
<li>
<a href="https://mrjoy832.github.io/DINO-GAMES-CLONE/" class="card dino" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Dino Game Clone</h3>
<p>
The Dinosaur Game is a browser game developed by Google and built into the
Google Chrome web browser. The player guides a pixelated Tyrannosaurus rex
across a side-scrolling landscape, avoiding obstacles to achieve a higher
score.
</p>
</div>
</div>
</a>
</li>
<!-- Discord Clone -->
<li>
<a href="https://htmlpreview.github.io/?https://github.com/XZANATOL/Clone-IT/blob/Discord_Clone/Discord_App_Clone/home.html"
class="card discord" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Discord Clone</h3>
<p>
Users communicate with voice calls, video calls, text
messaging, media and files in private chats or as part of
communities called "servers".
</p>
</div>
</div>
</a>
</li>
<!-- Disney Plus Clone -->
<li>
<a href="https://mrjoy832.github.io/Disney-/" class="card disney" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Disney Plus Clone</h3>
<p>
Disney+ is an American subscription video on-demand over-the-top streaming service
owned and operated by the Media and Entertainment Distribution division of The Walt
Disney Company.
</p>
</div>
</div>
</a>
</li>
<!-- Facebook Clone -->
<li>
<a href="https://vaib215.github.io/Facebook-Clone/" class="card facebook" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Facebook Clone</h3>
<p>
Meta Platforms, Inc., doing business as Meta and formerly
known as Facebook, Inc., multinational technology.
</p>
</div>
</div>
</a>
</li>
<!-- Flipkart Clone -->
<li>
<a href="https://rayman-sodhi.github.io/Flipkart-Clone/" class="card flipkart" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Flipkart Clone</h3>
<p>
Flipkart is a popular Indian company that deals with
e-commerce.
</p>
</div>
</div>
</a>
</li>
<!-- FreshWorks Clone -->
<li>
<a href="#" class="card fresh" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>FreshWorks Clone</h3>
<p>
Freshworks makes it fast and easy for businesses to delight their customers and
employees. We do this by taking a fresh approach to building and delivering
software-as-a-service that’s affordable, quick to implement, and designed for
the end-user.
</p>
</div>
</div>
</a>
</li>
<!-- Github Clone -->
<li>
<a href="https://htmlpreview.github.io/?https://github.com/XZANATOL/Clone-IT/blob/Github_Clone/Github_Homepage_Clone/index.html"
class="card github" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Github Clone</h3>
<p>
GitHub, Inc. is a provider of Internet hosting for software
development and version control using Git.
</p>
</div>
</div>
</a>
</li>
<!-- Google Shopping Website Clone-->
<li>
<a href="#" class="card google_shopping" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Google Shopping Website Clone</h3>
<p>
Google Shopping, formerly Google Product Search, Google Products and Froogle,
is a Google service created by Craig Nevill-Manning which allows users to search
for products on online shopping websites and compare prices between different
vendors.
</p>
</div>
</div>
</a>
</li>
<!-- Google Search Engine Clone -->
<li>
<a href="https://quizzical-payne-d3e222.netlify.app/" class="card google" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Google Search Engine Clone</h3>
<p>
Google LLC is a technology company that specializes in
Internet-related services and products.
</p>
</div>
</div>
</a>
</li>
<!-- Google Keep Clone -->
<li>
<a href="https://ajoe12.github.io/Google-Keep-Clone/" class="card google_keep" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Google Keep Clone</h3>
<p>
Google Keep is a note-taking service included as part of the
free, web-based Google Docs Editors suite offered by Google.
</p>
</div>
</div>
</a>
</li>
<!-- Gmail Clone -->
<li>
<a href="#" class="card gmail" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Gmail Clone</h3>
<p>
Gmail is a free email service provided by Google. As of
2019, it had 1.5 billion active users worldwide. A user
typically accesses Gmail in a web browser or the official
mobile app. Google also supports the use of email clients
via the POP and IMAP protocols.
</p>
</div>
</div>
</a>
</li>
<!-- Grammarly Clone-->
<li>
<a href="https://mrjoy832.github.io/Grammarly/" class="card grammarly" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Grammarly Clone</h3>
<p>
Grammarly is a Ukrainian American-headquartered cross-platform cloud-based typing assistant
that reviews spelling, grammar, punctuation, clarity, engagement, and delivery mistakes.
It uses AI to identify and search for an appropriate replacement for the error it locates.
</p>
</div>
</div>
</a>
</li>
<!-- HackerRank Clone -->
<li>
<a href="https://sulagna-dutta-roy.github.io/Hackerrank-clone/" class="card hackerRank" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>HackerRank Clone</h3>
<p>
HackerRank is a tech company that focuses on competitive programming challenges for
both consumers and businesses, where developers compete by trying to program according
to provided specifications.
</p>
</div>
</div>
</a>
</li>
<!-- Hindustan Petroleum -->
<li>
<a href="https://dsasaank-369.github.io/hpclone/" class="card petroleum" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Hindustan Petroleum Clone</h3>
<p>
Hindustan Petroleum Corporation Limited is a subsidiary of Oil and Natural Gas Corporation which is
under the ownership of Ministry of Petroleum and Natural Gas of the Government of India with its
headquarters in Mumbai, Maharashtra.
</p>
</div>
</div>
</a>
</li>
<!-- Hulu Clone -->
<li>
<a href="https://harshit995.github.io/hulu-clone/" class="card hulu" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Hulu Clone</h3>
<p>
Hulu is a streaming platform owned by The Walt Disney
Company.
</p>
</div>
</div>
</a>
</li>
<!-- Inshort Clone (working on;y on mozilla firefox) -->
<li>
<a href="https://cloninginshorts.netlify.app/" class="card inshorts" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Inshorts Clone</h3>
<p>
Inshorts is a Noida-based company that provides a content
discovery app for Android and iOS. It aggregates news and
other content such as videos, infographics, and blogs
</p>
</div>
</div>
</a>
</li>
<!-- Instagram Clone -->
<li>
<a href="https://rakesh9100.github.io/InstagramClone/" class="card instagram" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Instagram Clone</h3>
<p>
Instagram is an American photo and video sharing social networking service founded
by Kevin Systrom and Mike Krieger. In April 2012, Facebook Inc. acquired the service
for approximately US$1 billion in cash and stock.
</p>
</div>
</div>
</a>
</li>
<!-- Kali OS Clone -->
<li>
<a href="https://kali-org-clone.vercel.app/" class="card kali_os" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Kali OS Clone</h3>
<p>
Kali Linux is a Debian-derived Linux distribution designed for digital forensics
and penetration testing. It is maintained and funded by Offensive Security.
</p>
</div>
</div>
</a>
</li>
<!-- KFC Clone -->
<li>
<a href="https://rayman-sodhi.github.io/KFC-Clone/" class="card kfc" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>KFC Clone</h3>
<p>
KFC is an American fast food restaurant that specializes in
fried chicken.
</p>
</div>
</div>
</a>
</li>
<!-- Linkedin Clone -->
<li>
<a href="https://rayman-sodhi.github.io/Connected-In/" class="card linkedin" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>LinkedIn Clone</h3>
<p>
LinkedIn is a platform that is primarily used for
professional networking and career.
</p>
</div>
</div>
</a>
</li>
<!-- Linktree Clone -->
<li>
<a href="https://clonelinktree.netlify.app/" class="card linktree" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Linktree Clone</h3>
<p>
Linktree is the launchpad to your latest video, article,
recipe, tour, store, website, social post.
</p>
</div>
</div>
</a>
</li>
<!-- Mac OS Clone -->
<li>
<a href="https://mrjoy832.github.io/MAC-OS-/" class="card mac_os" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Mac OS Clone</h3>
<p>
Mac OS is a proprietary graphical operating system developed
and marketed by Apple Inc. since 2001. It is the primary
operating system for Apple's Mac computers. Within the
market of desktop and laptop computers
</p>
</div>
</div>
</a>
</li>
<!-- Microsoft clone -->
<li>
<a href="https://19arnab190201.github.io/Microsoft-Clone/" class="card microsoft" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Microsoft Clone</h3>
<p>
Microsoft Corporation is a technology company which produces
computer software related services
</p>
</div>
</div>
</a>
</li>
<!-- Microsoft Teams Clone -->
<li>
<a href="https://htmlpreview.github.io/?https://github.com/XZANATOL/Clone-IT/blob/Teams_Clone/Microsoft_Teams_Page_Clone/index.html"
class="card microsoft_teams" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Microsoft Teams Clone</h3>
<p>
Microsoft Teams is a proprietary business communication
platform developed by Microsoft, as part of the Microsoft
365 family of products
</p>
</div>
</div>
</a>
</li>
<!-- Myntra Clone -->
<li>
<a href="#" class="card myntra" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Myntra Clone</h3>
<p>
Myntra is a major Indian fashion e-commerce company headquartered in Bengaluru, Karnataka,
India. The company was founded in 2007 to sell personalized gift items. In May 2014, Myntra.com
was acquired by Flipkart.
</p>
</div>
</div>
</a>
</li>
<!-- Netflix Clone -->
<li>
<a href="https://netflix-clone-tau-livid.vercel.app/" class="card netflix" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Netflix Clone</h3>
<p>
Netflix is a streaming service that offers a variety of TV
shows, movies, anime and more
</p>
</div>
</div>
</a>
</li>
<!-- News Extension Clone -->
<li>
<a href="https://mrjoy832.github.io/Latest-News/" class="card news" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>News Extension Clone</h3>
<p>
This category includes extensions that alert you about the latest news and inform you on stock quotes
and
... Chrome favorites in news & weather extensions.
</p>
</div>
</div>
</a>
</li>
<!-- Nykaa Clone -->
<li>
<a href="#" class="card nykaa" target="_blank" rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Nykaa Clone</h3>
<p>
Nykaa is an Indian e-commerce company, founded by Falguni Nayar in 2012 and headquartered in Mumbai.
It sells beauty, wellness and fashion products across websites, mobile apps and 84 offline stores.
In 2020, it became the first Indian unicorn startup headed by a woman.
</p>
</div>
</div>
</a>
</li>
<!-- Pinterest Clone -->
<li>
<a href="https://vaibhavupreti.github.io/pinterest-static/" class="card pinterest" target="_blank"
rel="noopener noreferrer">
<div class="card-info">
<div class="card-details">
<h3>Pinterest Clone</h3>
<p>
DescriptionPinterest is an image sharing and social media service designed to
enable saving and discovery of information on the internet using images, and on a smaller scale,
animated GIFs and videos, in the form of pinboards
</p>
</div>
</div>
</a>
</li>
<!-- Pluralsight Clone -->