forked from AM1CODES/Poke-Dex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3852 lines (3825 loc) · 220 KB
/
Copy pathindex.html
File metadata and controls
3852 lines (3825 loc) · 220 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 content="width=device-width, initial-scale=1.0" name="viewport">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" rel="stylesheet">
<link href="index.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<title>Poké-Dex</title>
<link href="images/pokedex-icon-21.jpg" rel="icon" type="image/x-icon">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand navTitle" href="index.html"><img height="10%"
src="images/Pokedex_icon-icons.com_67530.svg" width="20%">Poké-Dex</a>
<button
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"
class="navbar-toggler" data-target="#navbarSupportedContent" data-toggle="collapse" type="button"><span
class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item itemNav">
<a class="nav-link" href="#header">Home</a>
</li>
<li class="nav-item itemNav">
<a class="nav-link" href="#gallery-title">Pokémons</a>
</li>
<li class="nav-item itemNav">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</nav><!-- Header Section -->
<div class="jumbotron text-center " id="header">
<h2 class="display-4">Poké-Dex</h2>
<div>
<p class="lead">We all love Pokémons, don't we? Go ahead and share with us who's
your favourite!</p>
<a href="#gallery-title"><i class="fas fa-chevron-down fa-6x gallery-icon" id="icon1"></i></a>
</div>
</div>
</div><!-- Gallery -->
<div id="gallery-title"></div>
<div class="gallery-div" id="">
<h1 class="gallery-head" id="gallery1">Pokémon gallery</h1>
<div class="view-div">
<button class="view-button" id="normal-view"><img src="icons/grid-small.png"> Normal</button>
<button class="view-button" id="compact-view"><img src="icons/grid-large.png"> Compact</button>
</div>
</div>
<section id="gallery">
<div class="container">
<div class="row">
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="/images/abra.jpg" alt="Abra">
<div class="card-body">
<h5 class="card-title">Abra</h5>
<p class="card-text">Abra uses psychic powers while it sleeps. Its dreams affect the powers that the Pokemon wields.</p>
<a href="[Add the link to your Github Profile]" class="btn btn-outline-danger btn-sm">Contributed by - felipprodrigues</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 ">
<div class="card">
<img alt="Pikachu" class="card-img-top"
src="https://i.pinimg.com/originals/76/47/9d/76479dd91dc55c2768ddccfc30a4fbf5.png">
<div class="card-body">
<h5 class="card-title">Pikachu</h5>
<p class="card-text">An Electric Type Pokémon who is loved by everyone and is Ash's Best
Friend!</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/AM1CODES">Contributed by - AM1CODES</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Haunter-image" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/6/62/093Haunter.png">
<div class="card-body">
<h5 class="card-title">Haunter</h5>
<p class="card-text">Haunter is a dual ghost/poison type dangerous Pokémon. If one beckons you while
floating in darkness,
you must never approach it. This Pokémon will try to lick you with its tongue and steal your life
away.</p>
<a class="btn btn-outline-danger btn-sm"
href="https://github.com/auxfuse">Contributed by - Auxfuse</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://img.pokemondb.net/artwork/large/horsea.jpg">
<div class="card-body">
<h5 class="card-title">Horsea</h5>
<p class="card-text">Horsea is a water-type dragon pokemon.It evolves into Seadra and then
into Kingdra(dragon-scale).Horsea eats small insects and moss off of rocks. If the ocean
current turns fast, this POKéMON anchors itself by wrapping its tail around rocks or
coral to prevent being washed away.</p>
<a href="https://github.com/donppyl" class="btn btn-outline-danger btn-sm">Contributed by -
Donppyl</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/bellosom.png">
<div class="card-body">
<h5 class="card-title">Bellosom</h5>
<p class="card-text">Plentiful in the tropics. When it dances, its petals rub together and make a pleasant
ringing sound.</p>
<a href="https://github.com/thalytabdn" class="btn btn-outline-danger btn-sm">Contributed by -
thalytabdn</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Bellsprout" class="card-img-top"
src="https://img.pokemondb.net/artwork/bellsprout.jpg" alt="">
<div class="card-body">
<h5 class="card-title">Bellsprout</h5>
<p class="card-text">Bellsprout is a Grass/Poison type Pokémon introduced in Generation 1.
It is known as the Flower Pokémon.</p>
<a href="https://github.com/Benzson92" class="btn btn-outline-danger btn-sm">Contributed by
- Benzson92</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Celebi" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/e/e7/251Celebi.png">
<div class="card-body">
<h5 class="card-title">Celebi</h5>
<p class="card-text">"Celebi is a mythical psychic and grass pokemon with no further
evolutions. Celebi is the gaurdian of the Ilex forest"</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/Shreya-L">Contributed by
Shreya-L</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://static.pokemonpets.com/images/monsters-images-800-800/2474-Shiny-PorygonZ.png"
alt="Porygon">
<div class="card-body">
<h5 class="card-title">Porygon-Z</h5>
<p class="card-text">Porygon-Z's appearance is similar to that of Porygon and Porygon2, though darker in
color when compared to both of them. It has a very smooth appearance much like Porygon2.</p>
<a href="https://github.com/mkhy19" class="btn btn-outline-danger btn-sm">Contributed by - mkhy19</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Treecko" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/252.png">
<div class="card-body">
<h5 class="card-title">Treecko</h5>
<p class="card-text">Treecko has small hooks on the bottom of its feet that enable it to scale vertical
walls. This Pokémon attacks by slamming foes with its thick tail.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/letbarros">Contributed by
Leticia Barros</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Vileplume Pokemon" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/045.png">
<div class="card-body">
<h5 class="card-title">Vileplume</h5>
<p class="card-text">Vileplume is a Grass/Poison type Pokémon , also known as the Flower
Pokémon.It has the world’s largest petals. With every step, the petals shake out heavy
clouds of toxic pollen.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/asthakri50">Contributed by - Astha Kumari</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/f/fd/134Vaporeon.png/250px-134Vaporeon.png">
<div class="card-body">
<h5 class="card-title">Vaporeon</h5>
<p class="card-text">Vaporeon is a Water-type Pokémon and is one of several evolved forms of
Eevee.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/bradmwong">Contributed by bradmwong</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Kecleon" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/5/50/352Kecleon.png/250px-352Kecleon.png">
<div class="card-body">
<h5 class="card-title">Kecleon</h5>
<p class="card-text">Kecleon's ability Color Change forces it to change its type to whatever
the last move used against it was.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/ComputerScientist-01">Contributed by -
Jayvardhan Rathi</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Bulbasaur" class="card-img-top"
src="https://www.pngkit.com/png/full/62-622458_pokemon-png-icon-png-images-pokemon-bulbasaur-png.png">
<div class="card-body">
<h5 class="card-title">Bulbasaur</h5>
<p class="card-text">"Bulbasaur is a cute Pokémon born with a large seed firmly affixed to
its back; the seed grows in size as the Pokémon does. Along with Squirtle and
Charmander, Bulbasaur is one of the three Pokémon available at the beginning of Pokémon
Red and Blue. It evolves into Ivysaur."</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/nikhil-2911">Contributed by -
nikhil-2911</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top" src="https://img.pokemondb.net/artwork/large/golisopod.jpg">
<div class="card-body">
<h5 class="card-title">Wimpod</h5>
<p class="card-text">This Pokémon is cowardly by nature and wary of both noise and sudden
movements.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/acearpit">Contributed by - acearpit</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Kingler" class="card-img-top" src="https://cdn.bulbagarden.net/upload/7/71/099Kingler.png">
<div class="card-body">
<h5 class="card-title">Kingler</h5>
<p class="card-text">Kingler is a crustacean Pokémon resembling a crab. Its strong shell covers the outside of its body, featuring a red upper half and a light tan lower half.</p>
<a class="btn btn-outline-danger btn-sm" href="https://github.com/rampotter10">Contributed by - Ram Kumar</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Squirtle" class="card-img-top"
src="https://i.pinimg.com/originals/1b/47/3a/1b473a97ded04ac7c5b85eaf2baa5441.png">
<div class="card-body">
<h5 class="card-title">Squirtle</h5>
<p class="card-text">It's a Water Type Pokémon. It's one of the starter Pokemons!</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/AM1CODES">Contributed by
- AM1CODES</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Charizard" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/006.png">
<div class="card-body">
<h5 class="card-title">Charizard</h5>
<p class="card-text">Its's a Fire/Flying type Pokémon. It's the final evolution of
Charmander.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/AM1CODES">Contributed by - AM1CODES</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Blastoise" class="card-img-top"
src="https://usercontent2.hubstatic.com/13815739_f520.jpg">
<div class="card-body">
<h5 class="card-title">Blastoise</h5>
<p class="card-text">It's a Water type Pokémon. It's the final evolution of Squirtle.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/AM1CODES">Contributed by
- AM1CODES</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Swanna" class="card-img-top" src="https://img.pokemondb.net/artwork/large/swanna.jpg">
<div class="card-body">
<h5 class="card-title">Swanna</h5>
<p class="card-text">Swanna is a dual-type Water/Flying Pokémon. It evolves from Ducklett
starting at level 35.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/nottiffchan">Contributed by - nottiffchan</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Oddish" class="card-img-top" src="https://img.pokemondb.net/artwork/large/oddish.jpg">
<div class="card-body">
<h5 class="card-title">Oddish</h5>
<p class="card-text">Oddish is a nocturnal Pokémon, using moonlight rather than the sun's
rays for photosynthesis. During the day, Oddish avoids the sun's heat and brightness by
burying itself into the earth, leaving only the leaves on top of its head visible above
ground. Once nightfall comes, exposure to moonlight causes Oddish to become much more
active.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/vcastle">Contributed by - vcastle</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Krabby" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/a/a7/098Krabby.png">
<div class="card-body">
<h5 class="card-title">Krabby</h5>
<p class="card-text">Krabby is a crustacean Pokémon with a strong outer shell protecting its
small body. Its upper half is red and has its eyes and two small spikes on the top of
its head. Its light tan arms are also connected to its upper body.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/rampotter10">Contributed
by - Ram Kumar</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Hariyama" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/297.png">
<div class="card-body">
<h5 class="card-title">Hariyama</h5>
<p class="card-text">Although they enjoy comparing their strength, they’re also kind. They
value etiquette, praising opponents they battle.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/GuavaGuy2693">Contributed
by - GuavaGuy2693</a>
</div>
</div>
</div>
<!-- SPECTRUM EDIT -->
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Ducklett" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/4/4b/580Ducklett.png/250px-580Ducklett.png">
<div class="card-body">
<h5 class="card-title">Ducklett</h5>
<p class="card-text">Ducklett is an aquatic bird-like Pokémon that resembles a duck. Its body is light blue
in color and the fluffy structure that surrounds its plump breast is sky blue. On its head is a
heart-shaped, feather-like protrusion. </p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/spectrum705">Contributed by -
spectrum705</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Mew" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/b/b1/151Mew.png/1200px-151Mew.png">
<div class="card-body">
<h5 class="card-title">Mew</h5>
<p class="card-text">Mew is a Psychic-type Mythical Pokémon. It is not known to evolve into
or from any other Pokémon.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/AM1CODES">Contributed by - AM1CODES</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top" src="https://img.pokemondb.net/artwork/large/growlithe.jpg">
<div class="card-body">
<h5 class="card-title">Growlithe</h5>
<p class="card-text">Growlithe has a superb sense of smell. Once it smells anything, this
POKéMON won’t forget the scent, no matter what. It uses its advanced olfactory sense to
determine the emotions of other living things.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/zendamacf">Contributed by
- zendamacf</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top" src="https://img.pokemondb.net/artwork/large/arcanine.jpg">
<div class="card-body">
<h5 class="card-title">Arcanine</h5>
<p class="card-text">Arcanine is a Fire type Pokémon introduced in Generation 1. It is known
as the Legendary Pokémon.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/laluardian">Contributed by - laluardian</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top" src="https://img.pokemondb.net/artwork/large/machoke.jpg">
<div class="card-body">
<h5 class="card-title">Machoke</h5>
<p class="card-text">Machoke is a Fighting type Pokémon introduced in Generation 1. It is
known as the Superpower Pokémon.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/laluardian">Contributed by -
laluardian</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Scyther" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/123.png">
<div class="card-body">
<h5 class="card-title">Scyther</h5>
<p class="card-text">Scyther, the Mantis Pokémon. Its claws are sharp as swords, and it is a
powerful flyer. This Pokémon is rarely seen by humans and almost never captured.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/AM1CODES">Contributed by
- AM1CODES</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Blaziken" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/257.png">
<div class="card-body">
<h5 class="card-title">Blaziken</h5>
<p class="card-text">Blaziken has incredibly strong legs—it can easily clear a 30-story
building in one leap. This Pokémon’s blazing punches leave its foes scorched and
blackened.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/o-mago">Contributed by - o-mago</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Rayquaza" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/e/e4/384Rayquaza.png/1200px-384Rayquaza.png">
<div class="card-body">
<h5 class="card-title">Rayquaza</h5>
<p class="card-text">Rayquaza is a Dragon/Flying type Pokémon introduced in Generation 3 .
It is known as the Sky High Pokémon . Rayquaza has a Mega Evolution, available from
Omega Ruby & Alpha Sapphire onwards.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/divyanshasharma">Contributed by -
Divyansha Sharma</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Golduck" class="card-img-top"
src="https://img.pokemondb.net/artwork/large/golduck.jpg">
<div class="card-body">
<h5 class="card-title">Golduck</h5>
<p class="card-text">Golduck is a Water Pokémon which evolves from Psyduck. It is vulnerable
to Grass and Electric moves. Golduck's strongest moveset is Confusion and Hydro Pump.
</p><a class="btn btn-outline-danger btn-sm" href="https://github.com/Xurde-Sni">Contributed
by - Xurde-Sni</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Camerupt" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/323.png">
<div class="card-body">
<h5 class="card-title">Camerupt</h5>
<p class="card-text">Camerupt has a volcano inside its body. Magma of 18,000 degrees
Fahrenheit courses through its body. Occasionally, the humps on this Pokémon’s back
erupt, spewing the superheated magma.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/GuavaGuy2693">Contributed by -
GuavaGuy2693</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top" src="https://img.pokemondb.net/artwork/croconaw.jpg">
<div class="card-body">
<h5 class="card-title">Croconaw</h5>
<p class="card-text">Croconaw is a Water type Pokémon introduced in Generation 2. It is
known as the Big Jaw Pokémon.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/laluardian">Contributed by - laluardian</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Pidgeotto" class="card-img-top"
src="https://vignette.wikia.nocookie.net/sonicpokemon/images/a/a5/Pidgeotto_AG_anime.png/revision/latest/scale-to-width-down/340?cb=20130708224327">
<div class="card-body">
<h5 class="card-title">Pidgeotto</h5>
<p class="card-text">Pidgeotto is a Normal & Flying Pokémon which evolves from Pidgey. It is
vulnerable to Ice, Rock and Electric moves. Pidgeotto's strongest moveset is Wing Attack
and Aerial Ace. Pidgeotto evolves into Pidgeot.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/crypt0-c0de">Contributed
by - crypt0-code</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Palossand" class="card-img-top"
src="https://cdn.pastemagazine.com/www/articles/250px-770Palossand.png">
<div class="card-body">
<h5 class="card-title">Palossand</h5>
<p class="card-text">The Pokémon world is a cruel place where even sandcastles can be deadly
predators. Palossand camouflages itself as a normal pile of sand until someone tries to
pick up the shovel on its head, which it then uses to control them to get them to build
into a bigger castle. If that wasn’t scary enough, it uses the same trick to surprise
prey only instead their despair spills onto the sand and becomes the offspring for this
terror of the beach.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/ankitabasera">Contributed by - Ankita Basera</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top"
src="https://compote.slate.com/images/18ba92e4-e39b-44a3-af3b-88f735703fa7.png?width=780&height=520&rect=1560x1040&offset=0x0">
<div class="card-body">
<h5 class="card-title">Pikachu</h5>
<p class="card-text">Well it's covid time. He's wearing a mask too :)</p><a
class="btn btn-outline-danger btn-sm"
href="https://www.github.com/alok182011">Contributed by - Alok</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top" src="images/miltank.png">
<div class="card-body">
<h5 class="card-title">Miltank</h5>
<p class="card-text">Miltank is a bovine Pokémon, not known to evolve into or from other
Pokémon. The milk that Miltank produces can be used to heal Pokémon and ill or weary
humans.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/small-ac">Contributed by - small-ac</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Jigglypuff" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/3/3e/039Jigglypuff.png">
<div class="card-body">
<h5 class="card-title">Jigglypuff</h5>
<p class="card-text">Known as the Balloon Pokemon, Jigglypuff is shaped like a round ball
with pink skin, large blue or green eyes, animal ears, and a tuft of fur on its
forehead. Its skin is rubbery and stretchy.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/sanidhya31">Contributed by -
sanidhya31</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top" src="https://img.pokemondb.net/artwork/fletchinder.jpg">
<div class="card-body">
<h5 class="card-title">Fletchinder</h5>
<p class="card-text">Fletchinder is a Fire/Flying type Pokémon introduced in Generation 6.
It is known as the Ember Pokémon</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/notmarshmllow">Contributed by -
Notmarshmllow</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top" src="https://cdn.bulbagarden.net/upload/4/41/130Gyarados.png">
<div class="card-body">
<h5 class="card-title">Gyarados</h5>
<p class="card-text">Gyarados has an extremely aggressive nature. The Hyper Beam it shoots
from its mouth totally incinerates all targets.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/jay-deep">Contributed by
- Jaydeep</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/131.png">
<div class="card-body">
<h5 class="card-title">Lapras</h5>
<p class="card-text">Lapras is a large sea Pokémon that resembles a plesiosaur. It has a
blue hide with darker blue spots and a cream-colored underside.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/jay-deep">Contributed by
- Jaydeep</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Pangoro" class="card-img-top"
src="https://cdn.pastemagazine.com/www/articles/250px-675Pangoro.png">
<div class="card-body">
<h5 class="card-title">Pangoro</h5>
<p class="card-text">It Is common with an anime anti-hero than a pocket monster with moves
consisting of punches and taunts.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/Parthasarathi-EXT1NT">Contributed By =>
Parthasarathi-EXT1NT</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Tyrantrum" class="card-img-top"
src="https://cdn.pastemagazine.com/www/articles/250px-697Tyrantrum.png">
<div class="card-body">
<h5 class="card-title">Tyrantrum</h5>
<p class="card-text">Its ability Strong Jaw powers up any move that uses the mouth which
fits right in with this T-Rex royalty.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/Parthasarathi-EXT1NT">Contributed By
=>
Parthasarathi-EXT1NT</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Tapu Koko" class="card-img-top"
src="https://cdn.pastemagazine.com/www/articles/250px-785Tapu_Koko.png">
<div class="card-body">
<h5 class="card-title">Tapu Koko</h5>
<p class="card-text">One of the island guardians in Alola has become a powerful part of the
meta-game almost overnight.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/Parthasarathi-EXT1NT">Contributed By =>
Parthasarathi-EXT1NT</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Seel" class="card-img-top" src="https://cdn.bulbagarden.net/upload/1/1f/086Seel.png">
<div class="card-body">
<h5 class="card-title">Seel</h5>
<p class="card-text">Seel is a Water-type Pokémon introduced in Generation I. It evolves
into Dewgong.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/lakshyasoni">Contributed By => lakshyasoni</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Jigglypuff" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/3/3e/039Jigglypuff.png">
<div class="card-body">
<h5 class="card-title">Jigglypuff</h5>
<p class="card-text">Jigglypuff has top-notch lung capacity, even by comparison to other
Pokémon. It won’t stop singing its lullabies until its foes fall asleep.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/lakshyasoni">Contributed
By => lakshyasoni</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Mimikyu" class="card-img-top"
src="https://static.pokemonpets.com/images/monsters-images-300-300/778-Mimikyu.png">
<div class="card-body">
<h5 class="card-title">Mimikyu</h5>
<p class="card-text">Mimikyu is a blue, bat-like Pokémon. While it lacks eyes, it has
pointed ears with purple insides and a mouth with two sharp teeth on each jaw.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/chait04">Contributed by -
chaitanya</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top"
src="https://cdn.pastemagazine.com/www/articles/250px-571Zoroark.png">
<div class="card-body">
<h5 class="card-title">Zoroark</h5>
<p class="card-text">Zoroark is a Dark-type Pokémon introduced in Generation V. This Pokémon
cares deeply about others of its kind, and it will conjure terrifying illusions to keep
its den and pack safe</p><a class="btn btn-outline-danger btn-sm"
href="github.com/Dhruv-VINT">Contributed by - Dhruv-VINT</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Castform" class="card-img-top" src="images/castform.jpg">
<div class="card-body">
<h5 class="card-title">Castform</h5>
<p class="card-text">Castform is an artificial Pokémon that changes appearance and attitude
based on the weather. Castform is an artificial Pokémon that changes appearance and
attitude based on the weather.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/Akecel">Contributed By => Akecel</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Gengar" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/c/c6/094Gengar.png/250px-094Gengar.png">
<div class="card-body">
<h5 class="card-title">Gengar</h5>
<p class="card-text">Gengar has the ability to hide perfectly in the shadow of any object,
granting it exceptional stealth.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/chaitanyagandhi">Contributed by -
chaitanyagandhi</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Skarmory" class="card-img-top"
src="https://img.pokemondb.net/artwork/large/skarmory.jpg">
<div class="card-body">
<h5 class="card-title">Skarmory</h5>
<p class="card-text">It’s mostly a support Pokémon that players use to set-up entry hazards
that can hound the opponent’s team for the entire match if left alone.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/Itsaadarsh">Contributed
by - Itsaadarsh</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Tyrantrum" class="card-img-top"
src="https://cdn.pastemagazine.com/www/articles/250px-697Tyrantrum.png">
<div class="card-body">
<h5 class="card-title">Tyrantrum</h5>
<p class="card-text">A strong and awesome pokemon which can attack with its incredible jaw
power.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/AnanyaNegi">Contributed by - Ananya Negi</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Houndoom" class="card-img-top"
src="https://cdn.pastemagazine.com/www/articles/250px-229Houndoom.png">
<div class="card-body">
<h5 class="card-title">Houndoom</h5>
<p class="card-text">Houndoom so scary.Its Pokédex entries state that “if the flames it
shoots from its mouth cause a burn, the pain will hurt forever.”</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/Rahulraj31">Contributed
By => Rahul Raj Pandey</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Chikorita" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/b/bf/152Chikorita.png/250px-152Chikorita.png">
<div class="card-body">
<h5 class="card-title">Chikorita</h5>
<p class="card-text">Chikorita is a Grass-type Pokémon introduced in Generation II. It
evolves into Bayleef starting at level 16, which evolves into Meganium starting at level
32.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/vanisingh-24">Contributed by - vanisingh-24</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Lopunny" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/c/c9/428Lopunny.png">
<div class="card-body">
<h5 class="card-title">Lopunny</h5>
<p class="card-text">Lopunny is a Normal-type Pokémon introduced in Generation IV. Lopunny
can Mega Evolve into Mega Lopunny using the Lopunnite</p><a
class="btn btn-outline-danger btn-sm"
href="https://github.com/anuraagbarde/">Contributed By => anuraagbarde</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Mewtwo" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/7/78/150Mewtwo.png/1200px-150Mewtwo.png">
<div class="card-body">
<h5 class="card-title">Mewtwo</h5>
<p class="card-text">Its DNA is almost the same as Mew’s. However, its size and disposition
are vastly different.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/SaiAshish2906">Contributed by - Sai Ashish</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Gyarados" class="card-img-top"
src="http://cdn.pastemagazine.com/www/articles/250px-130Gyarados.png">
<div class="card-body">
<h5 class="card-title">Gyarados</h5>
<p class="card-text">Gyarados is a Water/Flying pokemon with a very aggressive nature.
Magikarp, Gyarados' pre-evolution, may be useless at first but leveling it up would add
a good offensive pokemon to your team.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/EMTEE-001">Contributed by -
EMTEE-001</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Caterpie" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/010.png">
<div class="card-body">
<h5 class="card-title">Caterpie</h5>
<p class="card-text">Caterpie is a bug type pokemon which further evolves into Metapod and
then butterfree.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/Juarsh">Contributed by - Juarsh</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Caterpie" class="card-img-top" src="https://pokemon.gishan.cc/static/i/p/gastly.jpg">
<div class="card-body">
<h5 class="card-title">Gasly</h5>
<p class="card-text">This is a ghost type pokemon, which is cute, yet scary.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/Rashita123">Contributed
by - Rashita</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Togepi" class="card-img-top"
src="https://cdn.pastemagazine.com/www/articles/250px-175Togepi.png">
<div class="card-body">
<h5 class="card-title">Togepi</h5>
<p class="card-text">Back before the second generation was revealed, Togepi was used as a
literal Easter egg. What started as a mysterious egg in the anime turned out to be this
cute little monster. After it hatched it would almost always do one of two things: use
Metronome or cry.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/Aayushi-Mittal/">Contributed by - Aayushi-Mittal</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Munchlax" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/b/b2/446Munchlax.png/250px-446Munchlax.png">
<div class="card-body">
<h5 class="card-title">Munchlax</h5>
<p class="card-text">Munchlax, the Big Eater Pokémon. It gobbles up its own body weight in
food each day, and it swallows its food without almost any chewing.</p><a
class="btn btn-outline-danger btn-sm"
href="https://github.com/rachelktyjohnson">Contributed By => Rachel Johnson</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/b/b4/587Emolga.png/1200px-587Emolga.png">
<div class="card-body">
<h5 class="card-title">Emolga</h5>
<p class="card-text">Emolga is a flying type Pokemon, introduced in Generation V.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/Rashita123">Contributed
by - Rashita123</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Tyranitar" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/8/82/248Tyranitar.png/1200px-248Tyranitar.png">
<div class="card-body">
<h5 class="card-title">Tyranitar</h5>
<p class="card-text">Tyranitar is a large, bipedal, dinosaurian Pokémon with a green,
armor-like hide covering its body.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/Chawklate">Contributed by -
Chawklate</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Psyduck" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/5/53/054Psyduck.png/250px-054Psyduck.png">
<div class="card-body">
<h5 class="card-title">Psyduck</h5>
<p class="card-text">A duck pokemon constantly stunned by its headache, and usually just
stands vacantly, trying to calm itself.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/astitva3377">Contributed by -
Astitva Prakash</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Dragonite" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/8/8b/149Dragonite.png">
<div class="card-body">
<h5 class="card-title">Dragonite</h5>
<p class="card-text">Dragonite is a Dragon and Flying Pokémon which evolves from Dragonair.
It is vulnerable to Ice, Fairy, Dragon and Rock moves.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/chetas411">Contributed by
- Chetas Sharma</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Mimikyu" class="card-img-top"
src="https://n7.nextpng.com/sticker-png/857/628/sticker-png-mimikyu-pikachu-pokemon-fan-art-drawing-pikachu-mammal-carnivoran-dog-like-mammal-vertebrate.png">
<div class="card-body">
<h5 class="card-title">Mimikyu</h5>
<p class="card-text">This is a ghost type pokemon, which is cute, yet scary.</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/Rashita123">Contributed
by - Rashita</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Darkrai" class="card-img-top"
src="https://static.pokemonpets.com/images/monsters-images-800-800/491-Darkrai.png">
<div class="card-body">
<h5 class="card-title">Darkrai</h5>
<p class="card-text">Darkrai is a Dark-type Mythical Pokémon. It is not known to evolve into
or from any other Pokémon.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/nakul-shahdadpuri">Contributed by -
nakul-shahdadpuri</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top"
src="https://img.pokemondb.net/artwork/large/eevee-lets-go.jpg">
<div class="card-body">
<h5 class="card-title">Eevee</h5>
<p class="card-text">Eevee is a Normal-type Pokémon introduced .It evolves into one of eight
different Pokémon through various methods.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/shonali-ks">Contributed by -
shonali-ks</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top" src="images/pachirisu.png">
<div class="card-body">
<h5 class="card-title">Pachirisu</h5>
<p class="card-text">Pachirisu, the EleSquirrel Pokémon. It gathers static electricity and
hides fur balls along with its favorite fruit under the eaves of houses.</p><a
class="btn btn-outline-danger btn-sm"
href="https://github.com/UshasriMavuri1999">Contributed by - UshasriMavuri</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top"
src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/010.png">
<div class="card-body">
<h5 class="card-title">Caterpie</h5>
<p class="card-text">Caterpie is a Bug-type starter Pokémon.For protection, it releases a
horrible stench from the antenna on its head to drive away enemies.It's final evolution
is Butterfree</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/shonali-ks">Contributed by - shonali-ks</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Solgaleo" class="card-img-top" src="images/Solgaleo.jpg">
<div class="card-body">
<h5 class="card-title">Solgaleo</h5>
<p class="card-text">Solgaleo is a large, white Pokémon resembling a lion and capable of
learning the move Sunsteel Strike and exclusive Z-Move Searing Sunraze Smash.</p><a
class="btn btn-outline-danger btn-sm"
href="https://github.com/UshasriMavuri1999">Contributed by - UshasriMavuri</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="" class="card-img-top"
src="https://cdn.bulbagarden.net/upload/thumb/3/31/050Diglett.png/250px-050Diglett.png">
<div class="card-body">
<h5 class="card-title">Diglett</h5>
<p class="card-text">Strongest and super-effective against Earthquakes</p><a
class="btn btn-outline-danger btn-sm" href="https://github.com/Rashita123">Contributed
by - Rashita Mehta</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="charmander" class="card-img-top"
src="http://pngimg.com/uploads/pokemon/pokemon_PNG154.png">
<div class="card-body">
<h5 class="card-title">Charmander</h5>
<p class="card-text">It has a preference for hot things. When it rains, steam is said to
spout from the tip of its tail.</p><a class="btn btn-outline-danger btn-sm"
href="https://github.com/ankitwarbhe">Contributed by - Ankit
Warbhe</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img alt="Charizard" class="card-img-top"
src="https://www.seekpng.com/png/full/15-151178_charizard-png-high-quality-image-pokemon-charizard-png.png">
<div class="card-body">
<h5 class="card-title">Charizard</h5>
<p class="card-text">Charizard is a Fire/Flying type Pokémon introduced in Generation 1.It