forked from vikhyatsingh123/Naruto-Shippuden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1346 lines (1269 loc) · 106 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-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css" type="text/css">
<link href = "https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse4.mm.bing.net%2Fth%3Fid%3DOIP.6qtY7eooQBTfiSVjtrLrGQHaEj%26pid%3DApi&f=1"
rel="icon" type="image/jpeg">
<title>Naruto</title>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-light nav1">
<a class="navbar-brand brand1 ml-4" href="#" style="color: beige;">Naruto</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto" style="margin-left: 78%;">
<li class="nav-item active mx-4">
<a class="nav-link" href="./index.html" style="color: beige;">Home</a>
</li>
<li class="nav-item mx-4">
<a class="nav-link" href="./about.html" style="color: beige;">About</a>
</li>
</div>
</nav>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./Images/229954.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="./Images/377906.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="./Images/377922.jpg" class="d-block w-100" alt="...">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<h1 class="topic my-5">Characters</h1>
<!--Card section start-->
<div class="container">
<!--First card-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/naruto.png" alt="naruto" height="330px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Naruto Uzumaki</h2>
<p class="card-text">Naruto Uzumaki is the main protagonist in the popular manga and anime
series Naruto. He is a cheerful, hyperactive,
strong-willed, and occasionally simple-minded young shinobi from the village of Konoha (or
Leaf Village).</p>
<p>Since Naruto has the Nine Tails Fox sealed inside him, he is able to use the Fox's chakra,
which is much greater than
the average human. Initially Naruto and the Fox hated each other, and would rarely grant
Naruto his power unless they
were going to die. Eventually, they become friends, and Naruto then refers to the fox by his
name, Kurama. At this
point, Naruto can use Kurama's chakra at will.</p>
</div>
</div>
</div>
</div>
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Sasuke.png" alt="anko" height="350px" width="250px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Sasuke Uchiha</h2>
<p class="card-text">Sasuke Uchiha (うちはサスケ, Uchiha Sasuke) is one of the last surviving members
of Konohagakure's Uchiha clan. After his older brother, Itachi, slaughtered their clan,
Sasuke made it his mission in life to avenge them by killing Itachi. He is added to Team 7
upon becoming a ninja and, through competition with his rival and best friend, Naruto
Uzumaki, .</p>
</div>
</div>
</div>
</div>
<!-- first card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/kakashi.jpg" alt="Naruto Uzumaki" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Kakashi Hatake</h2>
<p class="card-text">Kakashi Hatake is one of the higher level Ninjas in the hiddenleaf village.
He is the teacher (sensei) of Uzumaki
Naruto, Haruno Sakura and Uchiha Sasuke. His teacher was the fourth hokage, Minato Namikaze
and his teammates were Obito
Uchiha and Rin Nohara. His rival is Might Guy.</p>
<p>He's worked and thrived at all levels, including among the ANBU. He has a summoning ability
with a pack of Ninja Dogs,
one of which speaks and all of which are excellent trackers. He's never been shown without
his masks on. He wears at
least two of them, and even his close friends don't know what he looks like.
Shortly after the ninja war, Kakashi becomes the Sixth Hokage of the Hidden Leaf Village,
after heading Obito's advice.</p>
</div>
</div>
</div>
</div>
<!-- Konan card start-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="https://cdnb.artstation.com/p/assets/images/images/029/881/599/medium/lilimonada-lilimon-konan.jpg?1598920736" alt="Konan" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Konan</h2>
<p class="card-text">Konan (小南, Konan) was a kunoichi from Amegakure and a founding member of the original Akatsuki. After Yahiko's death, she was partnered with Nagato, who had since taken control of Akatsuki, and was the only member to call him by his name. After Nagato's death, Konan defected from Akatsuki and became the de facto village head of Amegakure.</p>
<p>When she was young, Konan's family was killed during the Second Shinobi World War, and she was left to fend for herself.[4] Some time later, Yahiko found her, and the two worked together to survive. Not long after that, Konan went for a walk and found a young, dying Nagato and his dog, Chibi. She rescued him and brought him back to their hideout. Gradually the three became best friends. They eventually encountered the Sannin, who gave them some food. Konan impressed them by making an elaborate flower out of the paper wrappers left behind as a sign of gratitude. When Orochimaru suggested to kill them so they would not have to suffer the horrors of war, Jiraiya instead opted to stay and teach the three how to look after themselves.</p>
</div>
</div>
</div>
</div>
<!--Konan card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/asuma.jpg" alt="Asuma Sarutobi" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Asuma Sarutobi</h2>
<p class="card-text">A Jounin from The Hidden Leaf Village. A very calm and strong ninja, who always enjoys a good smoke.
He goes out with Kurenai, a strong Genjutsu user. Revealed to be the son of Hiruzen Sarutobi, the third Hokage and is uncle to Konohamaru Sarutobi.
Jonin squad leader of Team 10, the current Ino-Shika-Chou Trio until he meets his end by the Akatsuki Member, Hidan. He was later resurrected with
the impure world resurrection technique to participate in the Fourth Shinobi World War.</p>
<p>His abilities earned him a position into the Twelve Guardian Ninja — an elite hand-picked team which served to protect the Land of Fire's daimyō
— a role which later earned him a bounty of 35,000,000 ryō.[9][21] He could effortlessly take down nine Oto-nin during the Konoha Crush, noted to
have been chūnin-level or above,[22] and was able compete against Hidan, a powerful member of the Akatsuki, while also protecting his team.</p>
</div>
</div>
</div>
</div>
<!--second card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/madara-uchiha.jpeg" alt="Madara Uchiha" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Madara Uchiha</h2>
<p class="card-text">Madara Uchiha (うちはマダラ, Uchiha Madara) was the legendary leader of the Uchiha clan. He founded Konohagakure alongside his childhood friend and rival, Hashirama Senju, with the intention of beginning an era of peace. When the two couldn't agree on how to achieve that peace, they fought for control of the village, a conflict which ended in Madara's death. Madara, however, rewrote his death and went into hiding to work on his own plans. Unable to complete it in his natural life, he entrusted his knowledge and plans to Obito shortly before his actual death. Years later, Madara would be revived, only to see his plans foiled and ultimately, and finally, realising the error of his ways and making amends with Hashirama before his final death. </p>
</div>
</div>
</div>
</div>
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/hashirama.jpg" alt="Hashirama Senju" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Hashirama Senju</h2>
<p class="card-text">The First hokage, leader of the Senju clan, one of the founders of
Konohagakure. Older brother to the Second Hokage and Grandfather to the Fifth Hokage. He
possesses the Wood Style and has a friend and rival called Madara Uchiha.</p>
<p>He also showed great tactical skill and deceptive abilities, waiting until Madara became so
exhausted that he couldn't maintain his Sharingan to create a wood clone for Madara to
strike down so he could attack from behind without his opponent even realising it.</p>
</div>
</div>
</div>
</div>
<!-- Card Start For Gamabunta -->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/gamabunta.jfif" alt="Gamabunta" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Gamabunta</h2>
<p class="card-text">Gamabunta is a grumpy, stubborn and highly apathetic toad. He was summoned by lord fourth Hokage , sensei Jiraiya and by Naruto.</p>
<p>Gamabunta can spew oil from his mouth and use it to enhance fire. He is one of the biggest summon animal in the series. He was firest summoned by naruto when he was Falling from potential death.</p>
</div>
</div>
</div>
</div>
<!-- Card End For Gamabunta-->
<!-- Card Start -->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/matatabi.png" alt="Gamabunta" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Matatabi</h2>
<p class="card-text">Matatabi also known as Two-Tails, is one of the nine tailed beast.Yugito Nii is the jinchūriki of her</p>
<p>Matatabi has shown to be respectful and polite towards others,she is completely engulfed in blue flames.Matatabi also has flexible muscles, which grant it great speed despite its large size</p>
</div>
</div>
</div>
</div>
<!-- Card End-->
<!-- Card Start -->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Isobu.png" alt="Isobu" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Isobu</h2>
<p class="card-text">Isobu also known as Three-Tails, is one of the nine tailed beast. Yagura Karatachi of Kirigakure is the jinchūriki of his.</p>
<p>Isobu primarily resembles a large turtlea with crab-like shell and spikes all over its body, and three shrimp-like tail .He is a water type and uses mist to hide.</p>
</div>
</div>
</div>
</div>
<!-- Card End-->
<!-- card start-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/ino.jpg" alt="Ino Yamanaka" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Ino Yamanaka</h2>
<p class="card-text">A member of the Yamanaka clan. She's a kunoichi from The Hidden Leaf Village and Sakura Haruno's biggest rival in any matter of subjects. She is also a member of Team Asuma and is part of the Ino-Shika-Chou Trio. She is also a Medical-Ninja and the Daughter of Inoichi Yamanaka.</p>
<p>Originally a great rival to Sakura, Ino has had some fairly drastic character changes. She works in a flower shop with her parents, she's a Ninja, and she's blond. Aside from that she's taken a journey that has completely changed her personality. In the beginning Ino was something of the Queen Bee in the School, very popular, pretty, and charismatic. She and Sakura were good friends right up until the time they started noticing Sasuke, and than they (like many other of the girls) started plotting to date him. Up until that point Ino was very encouraging to Sakura trying to break her out of her shell, but after that point focusing on sabotaging her. They both were quick to insult each other and belittle the abilities of the other. This conflict didn't come to outright blows however. At least not until the Chunin tournament.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- Card Start -->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/son-goku.jpg" alt="Gamabunta" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Son Gokū</h2>
<p class="card-text">Son Gokū is a very prideful tailed beast, as it detests being called by the name "Four-Tails" and boasts about its lineage</p>
<p>It also hated humans, due to the fact that humans had enslaved it, and believes that apes are more intelligent than humans</p>
</div>
</div>
</div>
</div>
<!-- Card End-->
<!--card start-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/hanabi.jpg" alt="Hanabi Hyuga" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Hanabi Hyuga</h2>
<p class="card-text">Hanabi is the younger sister of Hinata. She plays an important role in The
Last: Naruto the Movie. Her father is Hiashi Hyuga and is auntie to Hinata's children,
Boruto and Himawari. Her cousin is Neji Hyuga. Naruto Uzumaki is her brother-in-law.</p>
<p>As a Hyuga, Hanabi possesses the Byakugan, a dojutsu kekkei genkai. While a common trait for
her clan, Hanabi's is noted by her father to be very powerful, almost as great as her cousin
Neji's.</p>
</div>
</div>
</div>
</div>
<!--card start -->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/orochi.jpg" alt="Orochimaru" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Orochimaru</h2>
<p class="card-text">Orochimaru is one of the legendary Sannin ninja and one of the main
villains in the Naruto series. He is voiced by very talented voice actor Steve Blum. He is a
student of the third hokage, Sarutobi. He tried to take the bodies of Sasuke and Itachi
Uchiha, but failed. Orochimaru was once a member of the Akatsuki.</p>
<p>Orochimaru craved more power than could be obtained from training with his master and began
abducting Konohagakure villagers for various experiments, with Yamato among his surviving
victims. Unwilling to bring himself to harm Orochimaru upon learning of his actions, Hiruzen
allowed his former pupil to escape and flee the village</p>
</div>
</div>
</div>
</div>
<!--card start-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/gaara.jpg" alt="gaara" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Gaara</h2>
<p class="card-text">Gaara) is a shinobi of Sunagakure. He was made the jinchūriki of the
One-Tailed Shukaku before he was born, causing the villagers of Suna to fear him as a
monster.</p>
<p> With nobody to connect to, Gaara grew up hating the world and looking out only for himself,
giving his life meaning by killing anyone he came across..</p>
</div>
</div>
</div>
</div>
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/shikamaru.jpg" alt="shikamaru" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Shikamaru Nara</h2>
<p class="card-text">A ninja of The Hidden Leaf Village. Possessing a genious level intellect,
he became the only student
from The Leaf to become a Chunin during the period of rank leveling exams. To the
discomptempt of many who admire his potential,
his probably the laziest and with more lack of enthusiasm ninja in his whole village.</p>
<p>Shikamaru Nara is in Team #10, which is Asuma Sarutobi's team, along with Ino Yamanaka and
Choji Akimichi.
Nara can use shadow Jutsu with a limit of about five minutes. He's a good team leader and
really intelligent, but everything is annoying to him!</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/anko.jpg" alt="anko" height="350px" width="250px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Anko Mitarashi</h2>
<p class="card-text">Anko Mitarashi is a Jonin of the Hidden Leaf Village. She was a proctor of
the survival portion of the Chunin exams. She was also a former student of longtime series
antagonist, Orochimaru, but did not share his vision and refused to follow him further.</p>
<p> At the end of the series, Anko makes a brief appearance and it appears she has gained a
great deal of weight.</p>
</div>
</div>
</div>
</div>
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/sakura.jpg" alt="anko" height="350px" width="250px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">
Sakura Haruno</h2>
<p class="card-text">Sakura Haruno is a kunoichi from The Hidden Leaf Village. She is member of
Team 7 along with Naruto Uzumaki, Sasuke Uchiha and their team leader Kakashi Hatake.</p>
<p> A ninja with uncanny chakra control and healing abilities. Sakura has quite a temper, and
once angry her true power unleashes. Sakura is also one of Lady Tsunade's students.</p>
</div>
</div>
</div>
</div>
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="Images/itachi.jpg" alt='itachi' height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">itachi</h2>
<p class="card-text">Itachi is one of the main villains in Naruto, as the murderer of the entire
Uchiha Clan. He's the older brother of Sasuke Uchiha and also the reason for Sasuke's need
for more power, which resulted in his defection from The Leaf
in search of Orochimaru. Itachi is a member of the akatsuki organization and is partnered
with Kisame Hoshigaki, a former member of the seven ninja swordsmen of the hidden mist.
Before joining the Akatsuki and defecting the
leaf village, Itachi was a member of the hidden leaf's Anbu</p>
<p>It is later revealed that Itachi killed the clan because they were planning a coup on the
leaf village and Itachi was working to prevent that. In the end Itachi dies by Sasuke's
hands, just as he always wanted.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="Images\Shisui Uchiha.png" alt=Shisui Uchiha height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Shisui Uchiha</h2>
<p class="card-text"> Shisui Uchiha from Uchiha clan was one the most skilled ninja in the
leaf village. Due to his powerful Sharingan Shisui was able to achieve every goal in his
mission.
Besides that Shisui was a good friend to Itachi Uchiha. Unfortunately his time didn't lasted
longer,
Danzo Shimura (Head of Black Ops) wanted his Sharingan and Shisui never wanted to hand his
eyes to a wrong
guy. He gave his eyes to his best friend who was like a younger brother to him and asked him
to protect it.
He jumped off the cliff and then took his last breaths.
</p>
<p>Although Shisui Uchiha was not known much,but his will was strong.
He ended up giving his life for good deeds.People thought Itachi killed him because
of his greedines but the truth remained uncovered till the last chapters.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!--card start-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/hagoromo_otsutsuki.png" alt="Hagoromo Otsutsuki" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Hagoromo Otsutsuki</h2>
<p class="card-text">Hagoromo Ōtsutsuki (大筒木ハゴロモ, Ōtsutsuki Hagoromo), known to Earth's population at large as the Sage of Six Paths (六道仙人, Rikudō Sennin), was a legendary godlike figure who is regarded as the ancestor of shinobi, for his act of founding ninshū which led to the creation of the ninja world. He was the son of Princess Kaguya and alongside his fraternal twin brother, Hamura, were the first to be born with the same powerful chakra as their mother.</p>
<p>Hagoromo is widely accepted as the most powerful figure in history, second only to his mother, having defeated the Ten-Tails and seal away his mother alongside his brother, with Hamura acknowledging his older brother as the stronger of the twins.His power even transcended time itself, becoming able to continue observing the world and interact with people long after his death.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!--complete card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="Images/obito_uchiha.png" alt='Obito Uchiha' height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Obito Uchiha</h2>
<p class="card-text">A character from the anime series Naruto. He claimed to be Madara Uchiha the man who fought the First Hokage, Hashirama. He is the main antagonist of the Naruto Series. He also goes by the name of Tobi. He is a former student of the fourth hokage, Minato. He is responsible for the Nine-Tails Attack on Konoha as well as the Uchiha clan massacre, ruining both Naruto and Sasuke's lives. His best friend is Kakashi Hatake and his love interest is Rin Nohara.</p>
<p>Tobi is the newest member of Akatsuki and replaced Sasori upon his death at the hands of Team 7. Tobi's true identity is only known to a very select few, Kabuto and Zetsu. Most of the main characters that knew of his secret are dead.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card start -->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="Images/kakuzu.png" alt="Kakuzu" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Kakuzu</h2>
<p class="card-text">Kakuzu is a member of the criminal organization known as Akatsuki. He is the accountant for the Akatsuki which makes him obsessed with money, he also possesses five hearts. He once fought the first hokage Hashirama and lost. He is a former shinobi from the village hidden in the waterfalls.</p>
<p>Kakuzu is a member/Accountant of Akatsuki and partner of Hidan , Kakuzu is from Takigakure, the Village Hidden in a Waterfall. Kakuzu is a very powerful shinobi, he posses five hearts which allow him to posses five lives. Kakuzu is able to replace these hearts if they are destroyed by removing them from a defeated opponent. Kakuzu is also able to use his hearts as weapons, the heart can be released from his body and take control of the string and build a body to use to fight with. Each one of his hearts has a different chakra element. Kakuzu has some very strange techniques, the weirdest of them all is that his body is made up of a string that can expand across a long distance by his chakra. Another technique is that he is able to shield his body from any attack if he is able too.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/haku.gif" alt="haku" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Haku</h2>
<p class="card-text">Haku is a young orphan ninja from the Land of the Wave. He served as Zabuza Momochi's faithful right hand man and is feared due to his advanced bloodline, meeting his end at the hands of Hatake Kakashi while trying to protect Zabuza.</p>
<p>Haku is an orphan born in the Land of the Wave, leaving to fight at Zabuza Momochi's side. He has a rather androgynous appearance, to the extent that he is mistaken for a female when first met by Naruto. He is notably feared for his advanced bloodline and known to dislike fighting, preferring to avoid killing if he can subdue his opponents instead.Haku is only shown in a few episodes before dying at the hands of Hatake Kakashi, proving his loyalty by intercepting an attack and dying in Zabuza's place. As his last act Zabuza requests to be placed beside Haku before he dies, taking the time to thank Haku and hope that he will see him again.</p>
</div>
</div>
</div>
</div>
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/371726-naruto_lee0180.jpg" alt="Rock Lee" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Rock Lee</h2>
<p class="card-text">Self proclaimed "Handsome devil of the leaf!" and "Konoha's beautiful green beast", this young shinobi is highly proficient at hand-to-hand taijutsu. Don't be fooled by his bushy-brow!</p>
<p>Rock Lee is known for his mastery of the Taijutsu technique. Lee mastered this technique because he is unable to perform any type of Ninjutsu or Genjustsu techniques. He always wears leg weights so he can be constantly building his strength. Lee can move at inhuman speeds when he takes his weights off.</p>
</div>
</div>
</div>
</div>
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/kisame_hoshigaki.jpg" alt="Kisame Hoshigaki" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Kisame Hoshigaki</h2>
<p class="card-text">Kisame Hoshigaki makes his first appearance in the series alongside Itachi Uchiha during the search for Tsunade arc. Hatake Kakashi spots them and sends Asuma and Kurenai to confront them. They do so and are both over-powered by the black-robed duo. Kisame is shown to be an aggressive fighter and only stops when Itachi tells him to. This is the first time we meet Akatsuki members and it's when we first hear about their true intentions to capture Naruto and the rest of the tailed beasts.</p>
<p>A former ninja from The Hidden Mist Village and was a former member of the Seven Ninja Swordsmen of The Mist. After defecting from his village, he joined the elite criminal organization Akatsuki. He is partnered up with Itachi Uchiha and his main weapon is Samehada (Sharkskin).</p>
</div>
</div>
</div>
</div>
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/zabuza.jpg" alt="Zabuza" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Zabuza</h2>
<p class="card-text">Zabuza Momochi, a mercenary assassin and former member of the Seven Swordsmen of the Mist. He is a master of silent assassinations and together with his water Jutsu he is feared as The Demon of the Hidden Mist.</p>
<p>Most of the information about Zabuza is presented through several flashbacks which shed some light on Zabuza’s history as a shinobi and how he become a wanted criminal for hire. They also explorer his relationship with Haku, his young companion, and tell the story of how they met.</p>
</div>
</div>
</div>
</div>
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/kidomaru.jpg" alt="Kidomaru" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Kidomaru</h2>
<p class="card-text">Kidomaru is a ninja from The Hidden Sound Village and member of The Sound Five.</p>
<p>Kidomaru generally saw a battle as a game, and displayed a laid-back ease in fights. Kidōmaru greatly enjoyed combat and relished in strong opponents as a source of entertainment, finding weaker opponents not worth his time and boring. His speech also reflected this when battling Neji Hyūga, he referred to Neji as a "minor character" and analysed his situation using typical gaming language such as "level" and "difficulty".</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/1701241-ino.jpg" alt="Ino Yamanaka" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Ino Yamanaka</h2>
<p class="card-text">A member of the Yamanaka clan. She's a kunoichi from The Hidden Leaf Village and Sakura Haruno's biggest rival in any matter of subjects.</p>
<p>She is also a member of Team Asuma and is part of the Ino-Shika-Chou Trio. She is also a Medical-Ninja and the Daughter of Inoichi Yamanaka.</p>
</div>
</div>
</div>
</div>
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="Images\Kaguya_Ōtsutsuki.png" alt="naruto" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Kaguya Ōtsutsuki</h2>
<p class="card-text">Princess Kaguya Ōtsutsuki, rarely going by her title, is the main antagonist of the Naruto franchise as a whole. She is the source of all the conflict of the entire manga and anime series Naruto, and by far the biggest threat faced by the protagonists.</p>
<p>In the anime, Kaguya was discovered by the people of the Land of Ancestors during an arrival to Earth, who brought her before their emperor Tenji. Identifying herself as the God Tree's guardian, Kaguya used her abilities to wipe Tenji's memories of the encounter and subsequently settled among his people, becoming recognised as his concubine.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/287665-jiraiya_1.jpg" alt="Jiraiya" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Jiraiya</h2>
<p class="card-text">Jiraiya is one of the three legendary sannin and at the time of the series is between the ages of 51-54. Jiraiya started out as a pupil of the Third Hokage, along with teammates Orochimaru and Tsunade. Some time after he and the other two left the Third's instruction they found themselves in a battle with Hanzo of the Rain village.</p>
<p>So impressed was Hanzo, with their abilities that he dubbed them the three sannin, or most powerful shinobi of the leaf village, and ended the current war.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/324680-kankuro.png" alt="Kankuro" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Kankuro</h2>
<p class="card-text">A ninja from The HIdden Sand Village. He is Gaara's older brother and an expert in puppet ninja techniques.</p>
<p>In the seires, Kankuro was shown during the chunin exams. He fought a guy who could disconnect all of his musles, making his like rubber, to no suprise, he was beaten and i think killed.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/2222200-minato.jpg" alt="Minato Namikaze" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Minato Namikaze</h2>
<p class="card-text">Minato Namikaze is a character in the Naruto universe. He is better known as The Fourth Hokage or as Konoha's Yellow Flash for his ability to use the Flying Thunder God Technique. </p>
<p>He is also the father of series protagonist, Naruto. He is the teacher of Kakashi Hatake, Obito Uchiha and Rin Nohara. He is also one of Jiraiya's students.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/1688202-nagato_six_paths_of__pain.jpg" alt="Pain" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Pain</h2>
<p class="card-text">Pain is the recognised leader of Akatsuki and leader of Amegakure. He wields the legendary Rinnegan and refers to himself as a god.</p>
<p>His real name is revealed to be Nagato and was once orphaned by war along with his friends Yahiko and Konan. The Three were trained by Jiraiya in Ninjutsu.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/3314586-1873826322-latest.jpg" alt="Princess Kasumi" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Princess Kasumi</h2>
<p class="card-text">The main antagonist of Naruto: Ultimate Ninja Heroes 2. She thirsts for revenge against Konoha Village, but her anger is amplified by Orochimaru's manipulation.</p>
<p>His real name is revealed to be Nagato and was once orphaned by war along with his friends Yahiko and Konan. The Three were trained by Jiraiya in Ninjutsu.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/shino.png" alt="Shino Aburame" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Shino Aburame</h2>
<p class="card-text">A member of the Aburame clan, an expert in ninja techniques that involve insects in them. A very mysterious and stoic person since childhood. </p>
<p>He is a member of Team 8, alongside his teammates Kiba Inuzuka and Hinata Hyuuga.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Temari.png" alt="Temari" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Temari</h2>
<p class="card-text">A ninja from The Hidden Sand Village. She is the older sister of Gaara and Kankuro, and is quite proficient in using a huge fan as her weapon for long range attacks. </p>
<p>In this fight Shikamaru tries to catch Temari with his shadow possession, she manages to outrun this for a while but in the end Shikamaru's great mind outwits her, however Shikamaru runs out of chakra and he gives up, this leaves Temari as the winner.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/557289-ygt.jpg" alt="Tsunade" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Tsunade</h2>
<p class="card-text">Tsunade is a kunoichi from the Hidden Leaf Village and posses Monstrous physical strength, extremely advanced healing and regenerative techniques, physician/surgeon level of knowledge of the human body and great Chakra control. </p>
<p>At once formed part of "The Legendary Sannin" along with Jiraiya and Orochimaru, and under the tutelage of the Third Hokage. Currently, she has become the Fifth Hokage of The Hidden Leaf Village. Her grandparents are revealed to be Hashirama Senju and Mito Uzumaki.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card start-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Sai_Infobox.png" alt="Sai Yamanaka" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Sai Yamanaka</h2>
<p class="card-text">Sai Yamanaka is the Anbu Chief of Konohagakure's Yamanaka clan. Prior to this, he was a Root member. As per standard Root training, Sai was conditioned to remove all emotions and as such, had difficulty connecting with others. When he is added to Team Kakashi as a replacement for the rogue Sasuke Uchiha, Sai begins to learn more about people's feelings and tries to develop his personality and identity by forming genuine bonds and rediscovering the emotions he was taught to suppress.</p>
<p>Sai was orphaned as a child and recruited into Root, a secret branch of the Anbu under the leadership of Danzō Shimura. There, he was raised and conditioned to have no personality, personal connections, or a name; "Sai" being given to him for the purposes of joining Team Kakashi. Though largely successful in this regard, Sai retained an interest in art. When Shin, an older Root member, discovered Sai's drawing ability, he encouraged Sai's talent and they became very close.
Over time, Sai came to think of Shin as an older brother and looked up to him. Unfortunately, the final step in Root training called for the two to fight to the death to eradicate all remaining emotions. Before that happened, however, Shin died of an unnamed illness and Sai's Root training suppressed most of the memories he had of him.In the anime, Sai and Shin were forced to fight by Danzō but Shin, knowing that he was dying anyway, told Sai to report to Danzō that he had killed him in battle. Before dying, Shin told his brother that he had to suppress his feelings, and to live for the both of them.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Tsunade.jpg" alt="Tsunade" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Tsunade</h2>
<p class="card-text">Tsunade is the Current Hokage (Leader) of the Village of Konoha. Her Abilities include her incredible strength which she obtained by learning how to focus chakra into precise points and release it all at once to cause massive damage to her enemies. Her other main ability is the use of Medical Ninjutsu which is the best in Konoha.</p>
<p>Tsunade can summon Katsuyu, a giant slug that is intelligent and very loyal to her. Katsuyu is able to perform a number of jutsu for which Tsunade does not seem to have her own equivalent, such as spitting acid and spliting into smaller slugs, making her useful for accomplishing tasks Tsunade cannot.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Temari.png" alt="Temari" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Temari</h2>
<p class="card-text">A ninja from The Hidden Sand Village. She is the older sister of Gaara and Kankuro, and is quite proficient in using a huge fan as her weapon for long range attacks.</p>
<p>We first see Temari entering the Leaf village with Kankuro and Gaara, her 2 siblings. In the first round of the preliminaries of the final chunin exam Temari fights against Ten-Ten who she easily defeats and continues to the final against Shikamaru. In this fight Shikamaru tries to catch Temari with his shadow possession, she manages to outrun this for a while but in the end Shikamaru's great mind outwits her, however Shikamaru runs out of chakra and he gives up, this leaves Temari as the winner. When the invasion of Konoha begins, Temari is forced to help Gaara flee the village. In the anime, when Sasuke begins to pursue them, Temari stays behind in an effort to slow Sasuke down, though he defeats her with little effort. After Gaara is defeated, Temari and Kankuro carry him home.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src=./Images/danzo.jpg alt="danzo" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Danzō Shimura</h2>
<p class="card-text">Danzo Shimura is considered by some to be the most unlikeable villain in the Naruto universe.Born into the Shimura Clan to his shinobi father, Danzō went onto joining the Academy, where he was amongst the first few hundred of students to graduate. From his genin days, he was acquainted with Hiruzen Sarutobi,whom he became rivals with in everything. </p>
<p>Although most people may judge him straight as evil but he was largely reposnible for the brief period of peace in konoha. He assasinated threats before anyone even noticed, extreminated rebillions even if it meant an entire clan. Needless to say the moment he died ,konoha fell into huge chaos and was infested in an another ninja war.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Konan.jpg" alt="Tsunade" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Konan</h2>
<p class="card-text">Konan (小南, Konan) was a kunoichi from Amegakure and a founding member of the original Akatsuki. After Yahiko's death, she was partnered with Nagato, who had since taken control of Akatsuki, and was the only member to call him by his name.</p>
<p> After Nagato's death, Konan defected from Akatsuki and became the de facto village head of Amegakure.</p>
</div>
</div>
</div>
</div>
<!-- card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Iruka-Umino.jpeg" alt="Tsunade" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Iruka Umino</h2>
<p class="card-text">Iruka Umino is a character we see once every year. Originally, he’s the only adult we first meet that cared for Naruto, while everyone else in the village despised him. </p>
<p>The entire first chapter of Naruto focuses on Iruka and Naruto’s character arc, as he is the only person who bonds with Naruto on the first few chapters.
Afterward, Iruka is shelved, and we only see him once every year, as he occasionally pops up as the moral support. As a ninja, however, he’s pretty useless.</p>
<p>We meet stronger ninjas with different jutsus later on in the series, who basically make us forget all about Iruka, aside from the one time he shines as Naruto’s godfather.
He’s really only still around for nostalgic reasons-- as both readers and Naruto grow up with other characters-- and he doesn’t add too much to the plot. Naruto goes on to meet other mentors and figures that have a much more significant impression on him than Iruka (i.e., Jiraiya, Kakashi).
</p>
</div>
</div>
</div>
</div>
<!-- card end-->
<!-- card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Shino.png" alt="Shino" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Shino Aburame</h2>
<p class="card-text">Shino Aburame is a supporting character in Naruto Shippuden. He is a shinobi of Konohagakure's Aburame clan. He is a close friend of Naruto and has helped him in various missions </p>
<p>He is a member of team Kurenai. He showed great potential as a shinobi and after the time-skip he was promoted to Chunin.As a member of the Aburame clan, he can create insect replica of himself. </p>
</div>
</div>
</div>
</div>
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Temari.png" alt="danzo" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Temari</h2>
<p class="card-text">A ninja from The Hidden Sand Village. She is the older sister of Gaara and Kankuro, and is quite proficient in using a huge fan as her weapon for long range attacks.</p>
<p>We first see Temari entering the Leaf village with Kankuro and Gaara, her 2 siblings. In the first round of the preliminaries of the final chunin exam Temari fights against Ten-Ten who she easily defeats and continues to the final against Shikamaru. In this fight Shikamaru tries to catch Temari with his shadow possession, she manages to outrun this for a while but in the end Shikamaru's great mind outwits her, however Shikamaru runs out of chakra and he gives up, this leaves Temari as the winner. When the invasion of Konoha begins, Temari is forced to help Gaara flee the village. In the anime, when Sasuke begins to pursue them, Temari stays behind in an effort to slow Sasuke down, though he defeats her with little effort. After Gaara is defeated, Temari and Kankuro carry him home.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src=./Images/danzo.jpg alt="danzo" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Danzō Shimura</h2>
<p class="card-text">Danzo Shimura is considered by some to be the most unlikeable villain in the Naruto universe.Born into the Shimura Clan to his shinobi father, Danzō went onto joining the Academy, where he was amongst the first few hundred of students to graduate. From his genin days, he was acquainted with Hiruzen Sarutobi,whom he became rivals with in everything. </p>
<p>Although most people may judge him straight as evil but he was largely reposnible for the brief period of peace in konoha. He assasinated threats before anyone even noticed, extreminated rebillions even if it meant an entire clan. Needless to say the moment he died ,konoha fell into huge chaos and was infested in an another ninja war.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="Images/itachi.jpg" alt='itachi' height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">itachi</h2>
<p class="card-text">Itachi is one of the main villains in Naruto, as the murderer of the entire Uchiha Clan. He's the older brother of Sasuke Uchiha and also the reason for Sasuke's need for more power, which resulted in his defection from The Leaf
in search of Orochimaru. Itachi is a member of the akatsuki organization and is partnered with Kisame Hoshigaki, a former member of the seven ninja swordsmen of the hidden mist. Before joining the Akatsuki and defecting the
leaf village, Itachi was a member of the hidden leaf's Anbu</p>
<p>It is later revealed that Itachi killed the clan because they were planning a coup on the leaf village and Itachi was working to prevent that. In the end Itachi dies by Sasuke's hands, just as he always wanted.
</p>
</div>
</div>
</div>
</div>
<!--card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="https://www.giantbomb.com/a/uploads/scale_small/0/6042/287665-jiraiya_1.jpg" alt="Jiraiya" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Jiraiya</h2>
<p class="card-text">Jiraiya is one of the "Three Legendary Sannin" that is known through out the ninja world. Jiraiya is the teacher of many characters in the Naruto universe including Naruto and the 4th Hokage. He is a renowned pervert and author of many adult books.</p>
</div>
</div>
</div>
</div>
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/Hanzo-the-Salamander.jpg" alt="Hanzo" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Hanzo-the-Salamander.jpg</h2>
<p class="card-text">Hanzo was the leader of the Hidden Rain Village. In his prime, Hanzo was capable of taking on all three members of the Legendary Sannin; he managed to beat all three of them but spared their lives and coined the name "Legendary Sannin."</p>
<p>Despite this incredible feat and the fact that he tends to be considered among the greatest shinobi to ever exist, Hanzo's name is scarcely mentioned during debates.</p>
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/uzimaki.png" alt="Boruto Uzumaki" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Boruto Uzumaki</h2>
<p class="card-text">Boruto Uzumaki is the son of Naruto Uzumaki and Hinata Hyuga who attends Konoha's ninja academy, inheriting his paternal family's short blond hair, blue eyes and "Believe it!" verbal tic. He also inherits his maternal family's Gentle Fist technique despite not inheriting the Byakugan, unlike his sister Himawari. </p>
<p>Just as his father pulled pranks to have his existence acknowledged, Boruto commits mischief to get his father's attention after his rise to Hokage, such as defacing the Hokage Monument during the events of the series epilogue. Boruto also admires his father's rival and friend Sasuke, seeking his training in order to surpass his father, later being accepted as his student.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/yamato.png" alt="Yamato" height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">Yamato</h2>
<p class="card-text">Yamato is introduced during Part II of the series as an ANBU member who becomes a substitute leader in Team Kakashi. "Yamato" is not his real name, rather a codename assigned for the purposes of joining Team Kakashi.</p>
<p>Unlike Kakashi, who was his senior in the ANBU and referred to him as Tenzo, Yamato believes ninja should be able to look after themselves to the point of leaving behind any he sees as a hindrance. During his childhood, Yamato was abducted by Orochimaru and experimented upon in an attempt to replicate Hashirama's Wood Style. In the anime, the ordeal erased Yamato's memories as he was taken in by Danzo to serve as a Root operative under the code name Kinoe. After meeting Kakashi, Kinoe would leave Root and join the Anbu as Tenzo.</p>
</div>
</div>
</div>
</div>
<!--card end-->
<!-- card end-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./Images/himawari.jpg" alt="Himawari Uzumaki" height="390px" width="300px">