-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
3507 lines (3494 loc) · 171 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="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./assets/styles/main.css" />
<title>Kobe Bryant Tribute Page</title>
</head>
<body>
<header class="navbar-expanded">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="#">Kobe Bryant Tribute</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-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 me-auto mb-2 mb-lg-0 align-items-end">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-house-fill"
viewBox="0 0 16 16"
>
<path
d="M8.707 1.5a1 1 0 0 0-1.414 0L.646 8.146a.5.5 0 0 0 .708.708L8 2.207l6.646 6.647a.5.5 0 0 0 .708-.708L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.707 1.5Z"
/>
<path
d="m8 3.293 6 6V13.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 13.5V9.293l6-6Z"
/>
</svg>
Início
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-file-person-fill"
viewBox="0 0 16 16"
>
<path
d="M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-1 7a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm-3 4c2.623 0 4.146.826 5 1.755V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-1.245C3.854 11.825 5.377 11 8 11z"
/>
</svg>
Sobre
</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-calendar-week"
viewBox="0 0 16 16"
>
<path
d="M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-5 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z"
/>
<path
d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"
/>
</svg>
Linha do tempo
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="#timeline">1996 - 2001</a>
</li>
<li>
<a class="dropdown-item" href="#timeline">2001 - 2006</a>
</li>
<li>
<a class="dropdown-item" href="#timeline">2006 - 2011</a>
</li>
<li>
<a class="dropdown-item" href="#timeline">2011 - 2020</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#famousPhrases">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-blockquote-left"
viewBox="0 0 16 16"
>
<path
d="M2.5 3a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1h-11zm5 3a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6zm0 3a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6zm-5 3a.5.5 0 0 0 0 1h11a.5.5 0 0 0 0-1h-11zm.79-5.373c.112-.078.26-.17.444-.275L3.524 6c-.122.074-.272.17-.452.287-.18.117-.35.26-.51.428a2.425 2.425 0 0 0-.398.562c-.11.207-.164.438-.164.692 0 .36.072.65.217.873.144.219.385.328.72.328.215 0 .383-.07.504-.211a.697.697 0 0 0 .188-.463c0-.23-.07-.404-.211-.521-.137-.121-.326-.182-.568-.182h-.282c.024-.203.065-.37.123-.498a1.38 1.38 0 0 1 .252-.37 1.94 1.94 0 0 1 .346-.298zm2.167 0c.113-.078.262-.17.445-.275L5.692 6c-.122.074-.272.17-.452.287-.18.117-.35.26-.51.428a2.425 2.425 0 0 0-.398.562c-.11.207-.164.438-.164.692 0 .36.072.65.217.873.144.219.385.328.72.328.215 0 .383-.07.504-.211a.697.697 0 0 0 .188-.463c0-.23-.07-.404-.211-.521-.137-.121-.326-.182-.568-.182h-.282a1.75 1.75 0 0 1 .118-.492c.058-.13.144-.254.257-.375a1.94 1.94 0 0 1 .346-.3z"
/>
</svg>
Frases famosas
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="main-content">
<header class="main-header">
<h1 class="main-title">Kobe Bryant</h1>
<h2 class="secondary-title">The Black Mamba</h2>
<img
src="./assets/img/banner-kobe-bryant.png"
class="img-thumbnail"
alt="Jogador Profissional de Basquete Kobe Bryant"
/>
</header>
<article>
<section id="about">
<header class="title-section">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-file-person-fill"
viewBox="0 0 16 16"
>
<path
d="M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm-1 7a3 3 0 1 1-6 0 3 3 0 0 1 6 0zm-3 4c2.623 0 4.146.826 5 1.755V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-1.245C3.854 11.825 5.377 11 8 11z"
/>
</svg>
<h2>Sobre</h2>
</header>
<div>
<p>
Kobe Bryant, nascido na Filadélfia, Pensilvânia, em 23 de agosto
de 1978, foi um dos maiores jogadores profissionais de basquete de
todos os tempos. Ele jogou toda a sua carreira como armador do Los
Angeles Lakers e muitas vezes campeão da
<abbr title="National Basketball Association">NBA</abbr>. Filho de
Joe Bryant, que foi ex-jogador do Philadelphia 76ers e ex-técnico
da
<abbr title="Women's National Basketball Association">WNBA</abbr>
Los Angeles Sparks. Kobe foi um dos poucos atletas a ser escolhido
no draft da
<abbr title="National Basketball Association">NBA</abbr> direto do
colégio para a liga norte-americana.
</p>
<p>
Ele também foi filantropo e, junto com sua esposa Vanessa Bryant,
foi embaixador e doador de organizações como: Kobe and Vanessa
Bryant Family Foundation(<abbr
title="Kobe and Vanessa Bryant Family Foundation"
>KVBFF</abbr
>), After-School All-Stars(<abbr title="After-School All-Stars"
>ASAS</abbr
>), National Museum of African American History and Culture(<abbr
title="National Museum of African American
History and Culture"
>NMAAHC)</abbr
>, Bryant também iniciou o Kobe Bryant China Fund, em parceria com
a Soong Ching Ling Foundation, uma instituição de caridade apoiada
pelo governo chinês. O Kobe Bryant China Fund arrecada dinheiro na
China para programas de educação e saúde.
</p>
<p>
Muito mais do que um astro da
<abbr title="National Basketball Association">NBA</abbr> e
filantropo, Kobe era conhecido por seu humor e personalidade, e
deixa um legado que vai além dos seus números em quadra. Bryant
também era autor, chefe do seu próprio estúdio de mídia, sócio de
uma empresa de capital de risco, marido e pai de quatro meninas.
</p>
<p>
Kobe Bryant partiu cedo, mas deixou um legado eterno,
transcendendo não apenas o seu time, mas também o esporte e a vida
de muitas pessoas. Através da sua história como atleta,
mentalidade positiva, persistente e humilde. Ele sempre será um
modelo de dedicação, determinação e excelência!
</p>
</div>
</section>
<section id="timeline">
<header class="title-section">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-calendar-week"
viewBox="0 0 16 16"
>
<path
d="M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-5 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z"
/>
<path
d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"
/>
</svg>
<h2>Linha do tempo</h2>
</header>
<p class="timeline-description">
Escolha o ano da temporada para ver mais informações:
</p>
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item dropdown" role="presentation">
<a
class="nav-link dropdown-toggle"
data-bs-toggle="dropdown"
href="#"
role="button"
aria-expanded="false"
>1996 - 2001</a
>
<ul class="dropdown-menu">
<li>
<a
class="dropdown-item"
href="#"
id="96-97-tab"
data-bs-toggle="tab"
data-bs-target="#96-97-tab-pane"
role="tab"
aria-controls="96-97-tab-pane"
aria-selected="true"
>1996-1997
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="97-98-tab"
data-bs-toggle="tab"
data-bs-target="#97-98-tab-pane"
role="tab"
aria-controls="97-98-tab-pane"
aria-selected="false"
>1997-1998
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="98-99-tab"
data-bs-toggle="tab"
data-bs-target="#98-99-tab-pane"
role="tab"
aria-controls="98-99-tab-pane"
aria-selected="false"
>1998-1999
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="99-00-tab"
data-bs-toggle="tab"
data-bs-target="#99-00-tab-pane"
role="tab"
aria-controls="99-00-tab-pane"
aria-selected="false"
>1999-2000
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="00-01-tab"
data-bs-toggle="tab"
data-bs-target="#00-01-tab-pane"
role="tab"
aria-controls="00-01-tab-pane"
aria-selected="false"
>2000-2001
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown" role="presentation">
<a
class="nav-link dropdown-toggle"
data-bs-toggle="dropdown"
href="#"
role="button"
aria-expanded="false"
>2001 - 2006</a
>
<ul class="dropdown-menu">
<li>
<a
class="dropdown-item"
href="#"
id="01-02-tab"
data-bs-toggle="tab"
data-bs-target="#01-02-tab-pane"
role="tab"
aria-controls="01-02-tab-pane"
aria-selected="false"
>2001-2002
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="02-03-tab"
data-bs-toggle="tab"
data-bs-target="#02-03-tab-pane"
role="tab"
aria-controls="02-03-tab-pane"
aria-selected="false"
>2002-2003
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="03-04-tab"
data-bs-toggle="tab"
data-bs-target="#03-04-tab-pane"
role="tab"
aria-controls="03-04-tab-pane"
aria-selected="false"
>2003-2004
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="04-05-tab"
data-bs-toggle="tab"
data-bs-target="#04-05-tab-pane"
role="tab"
aria-controls="04-05-tab-pane"
aria-selected="false"
>2004-2005
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="05-06-tab"
data-bs-toggle="tab"
data-bs-target="#05-06-tab-pane"
role="tab"
aria-controls="05-06-tab-pane"
aria-selected="false"
>2005-2006
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown" role="presentation">
<a
class="nav-link dropdown-toggle"
data-bs-toggle="dropdown"
href="#"
role="button"
aria-expanded="false"
>2006 - 2011</a
>
<ul class="dropdown-menu">
<li>
<a
class="dropdown-item"
href="#"
id="06-07-tab"
data-bs-toggle="tab"
data-bs-target="#06-07-tab-pane"
role="tab"
aria-controls="06-07-tab-pane"
aria-selected="false"
>2006 - 2007
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="07-08-tab"
data-bs-toggle="tab"
data-bs-target="#07-08-tab-pane"
role="tab"
aria-controls="07-08-tab-pane"
aria-selected="false"
>2007 - 2008
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="08-09-tab"
data-bs-toggle="tab"
data-bs-target="#08-09-tab-pane"
role="tab"
aria-controls="08-09-tab-pane"
aria-selected="false"
>2008 - 2009
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="09-10-tab"
data-bs-toggle="tab"
data-bs-target="#09-10-tab-pane"
role="tab"
aria-controls="09-10-tab-pane"
aria-selected="false"
>2009 - 2010
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="10-11-tab"
data-bs-toggle="tab"
data-bs-target="#10-11-tab-pane"
role="tab"
aria-controls="10-11-tab-pane"
aria-selected="false"
>2010 - 2011
</a>
</li>
</ul>
</li>
<li class="nav-item dropdown" role="presentation">
<a
class="nav-link dropdown-toggle"
data-bs-toggle="dropdown"
href="#"
role="button"
aria-expanded="false"
>2011 - 2020</a
>
<ul class="dropdown-menu">
<li>
<a
class="dropdown-item"
href="#"
id="11-12-tab"
data-bs-toggle="tab"
data-bs-target="#11-12-tab-pane"
role="tab"
aria-controls="11-12-tab-pane"
aria-selected="false"
>2011 - 2012
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="12-13-tab"
data-bs-toggle="tab"
data-bs-target="#12-13-tab-pane"
role="tab"
aria-controls="12-13-tab-pane"
aria-selected="false"
>2012 - 2013
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="13-14-tab"
data-bs-toggle="tab"
data-bs-target="#13-14-tab-pane"
role="tab"
aria-controls="13-14-tab-pane"
aria-selected="false"
>2013 - 2014
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="14-15-tab"
data-bs-toggle="tab"
data-bs-target="#14-15-tab-pane"
role="tab"
aria-controls="14-15-tab-pane"
aria-selected="false"
>2014 - 2015
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="15-16-tab"
data-bs-toggle="tab"
data-bs-target="#15-16-tab-pane"
role="tab"
aria-controls="15-16-tab-pane"
aria-selected="false"
>2015 - 2016
</a>
</li>
<li>
<hr class="dropdown-divider" />
</li>
<li>
<a
class="dropdown-item"
href="#"
id="total-tab"
data-bs-toggle="tab"
data-bs-target="#total-tab-pane"
role="tab"
aria-controls="total-tab-pane"
aria-selected="false"
>Total de highlights e prêmios na carreira</a
>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="18-tab"
data-bs-toggle="tab"
data-bs-target="#18-tab-pane"
role="tab"
aria-controls="18-tab-pane"
aria-selected="false"
>2018
</a>
</li>
<li>
<a
class="dropdown-item"
href="#"
id="20-tab"
data-bs-toggle="tab"
data-bs-target="#20-tab-pane"
role="tab"
aria-controls="20-tab-pane"
aria-selected="false"
>2020
</a>
</li>
</ul>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div
class="tab-pane fade"
id="96-97-tab-pane"
role="tabpanel"
aria-labelledby="96-97-tab"
tabindex="0"
>
<h3 class="title-timeline">1996-1997</h3>
<p>
Kobe foi draftado pela
<abbr title="National Basketball Association">NBA</abbr> na
Rodada: 1 / Escolha: 13º geral. Selecionado por Charlotte
Hornets e negociado com o Los Angeles Lakers em troca de Vlade
Divac.
</p>
<p>
Bryant estreou na Summer Pro League em Long Beach, Califórnia,
marcando 25 pontos. Na época, ele era o segundo jogador mais
jovem a disputar uma partida da
<abbr title="National Basketball Association">NBA</abbr> (18
anos e 72 dias) e também o mais jovem titular da
<abbr title="National Basketball Association">NBA</abbr> (18
anos e 158 dias).
</p>
<p>
Durante o fim de semana do All-Star, Bryant participou do Rookie
Challenge e venceu o Slam Dunk Contest de 1997, tornando-se o
mais jovem campeão de enterradas aos 18 anos.
</p>
<p>
O desempenho de Bryant ao longo do ano lhe rendeu uma vaga no
<abbr title="National Basketball Association">NBA</abbr>
All-Rookie Second Team com o companheiro de equipe Travis
Knight.
</p>
<p>Prêmios e conquistas da temporada:</p>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
Slam Dunkest Contest Champion
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA All-Rookie Second Team
</li>
</ul>
</div>
<div
class="tab-pane fade"
id="97-98-tab-pane"
role="tabpanel"
aria-labelledby="97-98-tab"
tabindex="0"
>
<h3 class="title-timeline">1997-1998</h3>
<p>
Na segunda temporada de Bryant, ele teve mais tempo de jogo e
começou a mostrar mais suas habilidades como um jovem armador
talentoso. Como resultado, a média de pontos de Bryant mais que
dobrou, passando de 7,6 para 15,4 pontos por jogo. Os 15,4
pontos de Bryant por jogo foram os mais altos de todos os não
titulares nesta temporada.
</p>
<p>
Bryant foi o sexto homem do ano da
<abbr title="National Basketball Association">NBA</abbr> e, por
meio da votação dos fãs, também se tornou o mais jovem titular
do NBA All-Star na história da
<abbr title="National Basketball Association">NBA</abbr>.
</p>
<p>Prêmios e conquistas da temporada:</p>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA All-Star
</li>
</ul>
</div>
<div
class="tab-pane fade"
id="98-99-tab-pane"
role="tabpanel"
aria-labelledby="98-99-tab"
tabindex="0"
>
<h3 class="title-timeline">1998-1999</h3>
<p>
A temporada de 1998-99 marcou o surgimento de Bryant como o
melhor armador da liga.
</p>
<p>Prêmios e conquistas da temporada:</p>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
All NBA Third Team
</li>
</ul>
</div>
<div
class="tab-pane fade"
id="99-00-tab-pane"
role="tabpanel"
aria-labelledby="99-00-tab"
tabindex="0"
>
<h3 class="title-timeline">1999-2000</h3>
<p>
Ele se autodenominou "Black Mamba" em meados dos anos 2000, e o
epíteto foi amplamente adotado pelo público em geral.
</p>
<p>
Bryant ficou afastado por seis semanas antes do início da
temporada 1999-2000 devido a uma lesão na mão que sofreu durante
um jogo de pré-temporada contra o Washington Wizards. Quando
Bryant estava de volta e jogando mais de 38 minutos por jogo,
ele teve um aumento em todas as categorias estatísticas durante
a temporada 1999-2000.
</p>
<p>
Nas finais de 2000, contra o Indiana Pacers, Bryant machucou o
tornozelo no segundo quarto do jogo 2 após cair no pé de Jalen
Rose do Pacers.
</p>
<p>Prêmios e conquistas da temporada:</p>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
All-NBA Second Team
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA Champion
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA All-Star
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA All-Defensive First Team (pela primeira vez em sua
carreira e o jogador mais jovem a receber honras de
All-Defensive)
</li>
</ul>
</div>
<div
class="tab-pane fade"
id="00-01-tab-pane"
role="tabpanel"
aria-labelledby="00-01-tab"
tabindex="0"
>
<h3 class="title-timeline">2000-2001</h3>
<p>Ganhou dois campeonatos seguidos.</p>
<p>Prêmios e conquistas da temporada:</p>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA Champion
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA All-Star
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
All-NBA Second Team
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA All-Defensive Second Team
</li>
</ul>
</div>
<div
class="tab-pane fade"
id="01-02-tab-pane"
role="tabpanel"
aria-labelledby="01-02-tab"
tabindex="0"
>
<h3 class="title-timeline">2001-2002</h3>
<p>
Em 14 de janeiro de 2002, Bryant registrou 56 pontos, o recorde
de sua carreira, além de cinco rebotes e quatro assistências na
vitória por 120-81 sobre o Memphis Grizzlies.
</p>
<p>
<abbr title="National Basketball Association">NBA</abbr>
Championship (Aos 23 anos, Bryant se tornou o jogador mais jovem
a vencer três campeonatos).
</p>
<p>Prêmios e conquistas da temporada:</p>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA Championship
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA All-Star
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA All-Star Game MVP(Most Valuable Player)
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
All-NBA First Team
</li>
<li class="list-group-item">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-trophy-fill"
viewBox="0 0 16 16"
>
<path
d="M2.5.5A.5.5 0 0 1 3 0h10a.5.5 0 0 1 .5.5c0 .538-.012 1.05-.034 1.536a3 3 0 1 1-1.133 5.89c-.79 1.865-1.878 2.777-2.833 3.011v2.173l1.425.356c.194.048.377.135.537.255L13.3 15.1a.5.5 0 0 1-.3.9H3a.5.5 0 0 1-.3-.9l1.838-1.379c.16-.12.343-.207.537-.255L6.5 13.11v-2.173c-.955-.234-2.043-1.146-2.833-3.012a3 3 0 1 1-1.132-5.89A33.076 33.076 0 0 1 2.5.5zm.099 2.54a2 2 0 0 0 .72 3.935c-.333-1.05-.588-2.346-.72-3.935zm10.083 3.935a2 2 0 0 0 .72-3.935c-.133 1.59-.388 2.885-.72 3.935z"
/>
</svg>
NBA All-Defensive Second Team
</li>
</ul>
</div>
<div
class="tab-pane fade"
id="02-03-tab-pane"
role="tabpanel"
aria-labelledby="02-03-tab"
tabindex="0"
>