forked from ankitpareek0141/Favorite-OTT-characters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1212 lines (1155 loc) · 64.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<title>Favorite OTT Characters</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script
src="https://use.fontawesome.com/releases/v6.1.0/js/all.js"
crossorigin="anonymous"
></script>
<!-- Google fonts-->
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,700"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic"
rel="stylesheet"
type="text/css"
/>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<style>
body {
margin: 0;
padding: 0;
min-height: 100vh;
min-width: 100vw;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
overflow: auto;
box-sizing: border-box;
font-family: 'Century Gothic';
}
h1 {
color: skyblue;
text-align: center;
}
/* if dark-mode class is not added set this background */
body {
background: white;
transition: 0.5s;
}
#ChangeTheme {
width: 0;
height: 0;
opacity: 0;
}
label {
display: block;
margin-top: 0;
height: 15px;
width: 45px;
position: relative;
transform: rotate(90deg) translate(50px, 100px);
}
span.slide {
position: absolute;
width: 100%;
height: 100%;
background: #dadada;
border-radius: 30px;
}
span.slide:before {
position: absolute;
content: '';
height: 20px;
width: 20px;
background: #fff;
border-radius: 50%;
top: -2px;
left: 0px;
transition: 0.5s;
box-shadow: rgba(0, 0, 0, 0.21) 0px 0px 7px 1px;
}
.dark-box {
background-image: linear-gradient(#04619f, #000000);
color: #fff;
}
.txt {
position: relative;
margin-top: 15px;
transform: translatex(-60px);
}
.txt p:nth-child(1) {
color: grey;
font-weight: bold;
font-size: 1.1em;
transition: 0.5s;
}
#ChangeTheme:checked + span.slide:before {
transform: translatex(25px);
}
/* if dark-mode class is added set this background */
body.dark-mode {
background-image: linear-gradient(#28313b, #485461);
}
.dark-mode .txt p:nth-child(1) {
color: #fff;
font-weight: normal;
}
.dark-mode .txt p:nth-child(2) {
color: grey;
font-weight: bold;
}
.pNav {
margin-top: 0;
margin-bottom: 0;
}
/* scroll to top button css */
.to-top {
background: rgb(76, 97, 126);
position: fixed;
bottom: 16px;
right: 32px;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
color: #f1f3f4;
text-decoration: none;
opacity: 0;
pointer-events: none;
transition: all 0.4s;
}
.to-top.active {
bottom: 32px;
pointer-events: auto;
opacity: 1;
}
</style>
</head>
<body id="page-top">
<!-- Back to top button -->
<!-- <button
type="button"
class="btn btn-danger btn-floating btn-lg"
id="btn-back-to-top"
>
<i class="fas fa-arrow-up"></i>
</button> -->
<a href="#" class="to-top">
<i class="fas fa-chevron-up"></i>
</a>
<!-- Navigation-->
<nav
class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top"
id="mainNav"
>
<div class="container">
<a class="navbar-brand" href="#page-top"
>Favorite OTT characters</a
>
<input type="text" id="SearchTxt" />
<input
type="button"
id="SearchBtn"
value="Search"
onclick="doSearch(document.getElementById('SearchTxt').value)"
/>
<div>
<label for="ChangeTheme">
<input type="checkbox" id="ChangeTheme" />
<span class="slide"></span>
</label>
<div class="txt">
<p class="pNav">Light</p>
<p class="pnav">Dark</p>
</div>
</div>
</div>
</nav>
<!-- Portfolio Section-->
<section class="page-section portfolio" id="portfolio">
<div class="container">
<!-- Portfolio Section Heading-->
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- <div class="container text-center mb-5">
<div class="input-group mb-3 w-50 m-auto">
<input type="text" class="form-control" onkeyup="searchFunction()" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default" placeholder="Search for names..">
</div>
</div> -->
<!-- ***************** Cards Container Starts ***************** -->
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card h-100">
<img
src="https://i.insider.com/5cb3c8e96afbee373d4f2b62?width=700"
class="card-img-top"
style="
object-fit: contain;
width: auto;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">John Snow</h5>
<p class="card-text">
Jon Snow is a fictional character in the A
Song of Ice and Fire series of fantasy
novels by American author George R. R.
Martin, and its television adaptation Game
of Thrones, in which he was portrayed by
English actor Kit Harington. In the novels,
he is a prominent point of view character.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://static1.srcdn.com/wordpress/wp-content/uploads/2022/07/Sansa-Starks-10-Best-Decisions.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Sansa Stark</h5>
<p class="card-text">
Sansa Stark is a fictional character in the
A Song of Ice and Fire series of epic
fantasy novels by American author George R.
R. Martin, and its television adaptation
Game of Thrones, where she was portrayed by
English actress Sophie Turner.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://i.scdn.co/image/ab67706c0000bebb9e4e96e77aecc3bbda585739"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Tyrion Lannister</h5>
<p class="card-text">
Lord Tyrion Lannister is the youngest child
of Lord Tywin Lannister and younger brother
of Cersei and Jaime Lannister. A dwarf, he
uses his wit and intellect to overcome the
prejudice he faces. He is the current Lord
of Casterly Rock and Hand of the King to
Brandon Stark.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://www.pinkvilla.com/files/styles/large/public/shaktimanunknownfactsmain.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Shaktimaan</h5>
<p class="card-text">
Shaktiman.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://www.refinery29.com/images/9657393.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">The Professor</h5>
<p class="card-text">
Sergio Marquina, better known as The
Professor ( Spanish: El Profesor ), is one
of the main characters in the Netflix series
Money Heist, portrayed by actor Álvaro
Morte. He was the mastermind responsible for
organizing the Royal Mint of Spain Heist and
later oversaw the Bank of Spain Heist, which
had been initially planned by Berlin.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://akns-images.eonline.com/eol_images/Entire_Site/2019420/rs_600x600-190520142251-600x600.stranger-things-eleven-lp.52019.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="col">
<div class="card h-100">
<img src=" https://user-images.githubusercontent.com/86323992/194938060-5bdab73e-1700-48b6-bc79-69b8afded447.jpg " class="card-img-top" style="object-fit: contain; height: 300px; background-color: black;" alt="...">
<div class="card-body">
<h5 class="card-title">OTIS</h5>
<p class="card-text"> Otis Milburn is one of the main characters in Sex Education. He is portrayed by Asa Butterfield.
He is an awkward teenager who struggles with his mother's occupation and her interference in his personal and sexual life </p>
</div>
</div>
</div>
<div class="card-body">
<h5 class="card-title">Eleven</h5>
<p class="card-text">
Jane "El" Hopper (born Jane Ives) and better
known as just Eleven, is a main character in
Stranger Things. She is portrayed by Millie
Bobby Brown. Eleven was kidnapped as a
newborn by Dr. Martin Brenner and raised in
Hawkins National Laboratory,
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://www.bollywoodhungama.com/wp-content/uploads/2021/09/WhatsApp-Image-2021-09-23-at-10.45.54-AM.jpeg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Tokyo</h5>
<p class="card-text">
Tokyo (Silene Oliveira) is a fictional
character in the Netflix series Money Heist,
portrayed by Úrsula Corberó. The de facto
protagonist of the series, she is the
unreliable narrator and a runaway robber who
is scouted by the Professor to participate
in his heists.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://images-na.ssl-images-amazon.com/images/S/pv-target-images/a418552e4e66f5e1cfc6c356cd54da2f7d2374034a449f4d28f706b91d82be0e._RI_V_TTW_.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Patlu</h5>
<p class="card-text">Motu aur patlu ki jodi</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://m.media-amazon.com/images/M/MV5BODY4Y2UyODUtYjkzNC00NmZlLWEzNWYtMTAxYmIzNGVlYmVkXkEyXkFqcGdeQXVyODAzNzAwOTU@._V1_.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Motu</h5>
<p class="card-text">
Motu and Patlu, two friends living in Fufuri
Nagar, always get themselves into hilarious
situations and later rescued merely by luck,
using the help from Ghasita Ram, Inspector
Chingam and Dr. Jhatka.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src=" https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQReoIEUpSoud29w7SVySAkUPORd6a07RsXTA&usqp=CAU "
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Thor</h5>
<p class="card-text">
The warrior Thor (Chris Hemsworth) is cast
out of the fantastic realm of Asgard by his
father Odin (Sir Anthony Hopkins) for his
arrogance and sent to Earth to live amongst
humans. Falling in love with scientist Jane
Foster (Natalie Portman) teaches Thor
much-needed lessons, and his new-found
strength comes into play as a villain from
his homeland sends dark forces toward Earth.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src=" assets/img/thomas_shelby.png "
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">THOMAS SHELBY</h5>
<p class="card-text">
Thomas Michael Shelby, OBE, DCM, MM, MP is a
fictional character born in 1890 in
Birmingham, England, and the main
protagonist in the British period crime
drama Peaky Blinders. He is played by Irish
actor Cillian Murphy, who has won an Irish
Film & Television Award and National
Television Award for his portrayal of
Shelby. The character has received critical
acclaim.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src=" https://nettv4u.com/imagine/12-01-2019/ritwik-bhowmik.jpg "
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Ritwik Bhowmik</h5>
<p class="card-text">
Ritwik Bhowmik is an Indian actor known for
portraying Radhe in Bandish Bandits and
Sanket Bhadoria in The Whistleblower.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://i1.sndcdn.com/artworks-000207776101-ysy86n-t500x500.jpg" class="card-img-top" style="object-fit: contain; height: 300px; background-color: black;" alt="...">
<div class="card-body">
<h5 class="card-title"> Chinchan</h5>
<p class="card-text">Crayon Shin-chan (Japanese: クレヨンしんちゃん, Hepburn: Kureyon Shin-chan), is a Japanese manga series written and illustrated by Yoshito Usui. Crayon Shin-chan made its first appearance in 1990 in a Japanese weekly magazine called Weekly Manga Action, which was published by Futabasha. Due to the accidental death of author Yoshito Usui, the manga in its original form ended on September 11, 2009.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://img.etimg.com/thumb/msid-91585647,width-650,imgsize-37952,,resizemode-4,quality-100/doctor-strange-2.jpg" class="card-img-top" style="object-fit: contain; height: 300px; background-color: black;" alt="...">
<div class="card-body">
<h5 class="card-title">Doctor Strange</h5>
<p class="card-text">Doctor Strange is a practising sorcerer who gains his abilities from mystical entities such as Agamotto, Cyttorak, Ikonn, Oshtur, Raggadorr, and Watoomb, who lend their energies to spells. The Cloak of Levitation, which gives Strange the ability to fly, the Eye of Agamotto, an amulet whose light is used to counteract evil magic, the Book of the Vishanti, a grimoire containing extensive knowledge of white magic, and the Orb of Agamotto, a crystal ball used for clairvoyance are among the magical items that Strange also wields. Strange has demonstrated proficiency with a variety of magically summoned weapons, including swords and axes, in addition to his magical abilities. He is also trained in judo and other martial arts styles. Before nerve damage rendered his hands ineffective, Strange was a skilled neurosurgeon.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="https://www.postoast.com/wp-content/uploads/2020/10/Real-life-munna-tripathi-Mirzapur.jpg" class="card-img-top" style="object-fit: contain; height: 300px; background-color: black;" alt="...">
<div class="card-body">
<h5 class="card-title">Munna Tripathi</h5>
<p class="card-text">Munna Tripathi urf Munna Bhaiya is famous charcter from Mirzapur Web Series. He is famous for his speaking and action. </p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://m.media-amazon.com/images/M/MV5BY2M3MTc0ODAtMDdjZi00ZjljLWIyNzUtOWY2ZjkxMjNhYzA0XkEyXkFqcGdeQXVyODAzNzAwOTU@._V1_.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Harshad Mehta</h5>
<p class="card-text">
Set in 1980s and '90s Bombay, it follows the
life of Harshad Mehta, a stockbroker who
took the stock market to dizzying heights
and his catastrophic downfall.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://i1.sndcdn.com/artworks-000207776101-ysy86n-t500x500.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Chinchan</h5>
<p class="card-text">
Crayon Shin-chan (Japanese:
クレヨンしんちゃん, Hepburn: Kureyon
Shin-chan), is a Japanese manga series
written and illustrated by Yoshito Usui.
Crayon Shin-chan made its first appearance
in 1990 in a Japanese weekly magazine called
Weekly Manga Action, which was published by
Futabasha. Due to the accidental death of
author Yoshito Usui, the manga in its
original form ended on September 11, 2009.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://i1.sndcdn.com/artworks-000605125624-89fdgf-t500x500.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Heisenberg</h5>
<p class="card-text">
Walter Hartwell White Sr., also known by his
drug-lord alias Heisenberg, is the main
character of the American crime drama
television series Breaking Bad, portrayed by
Bryan Cranston.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://img.etimg.com/thumb/msid-91585647,width-650,imgsize-37952,,resizemode-4,quality-100/doctor-strange-2.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Doctor Strange</h5>
<p class="card-text">
Doctor Strange is a practising sorcerer who
gains his abilities from mystical entities
such as Agamotto, Cyttorak, Ikonn, Oshtur,
Raggadorr, and Watoomb, who lend their
energies to spells. The Cloak of Levitation,
which gives Strange the ability to fly, the
Eye of Agamotto, an amulet whose light is
used to counteract evil magic, the Book of
the Vishanti, a grimoire containing
extensive knowledge of white magic, and the
Orb of Agamotto, a crystal ball used for
clairvoyance are among the magical items
that Strange also wields. Strange has
demonstrated proficiency with a variety of
magically summoned weapons, including swords
and axes, in addition to his magical
abilities. He is also trained in judo and
other martial arts styles. Before nerve
damage rendered his hands ineffective,
Strange was a skilled neurosurgeon.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://images2.alphacoders.com/509/thumb-1920-509099.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Sherlock Holmes</h5>
<p class="card-text">
Sherlock Holmes (/ˈʃɜːrlɒk ˈhoʊmz/) is a
fictional detective created by British
author Sir Arthur Conan Doyle. Referring to
himself as a "consulting detective" in the
stories, Holmes is known for his proficiency
with observation, deduction, forensic
science and logical reasoning that borders
on the fantastic, which he employs when
investigating cases for a wide variety of
clients, including Scotland Yard.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://img-4.linternaute.com/Yb-sG6V4wi2FxpmAk4bmrUnROmQ=/300x/smart/5b794a03a1fe41dd8e3ff9d667b02ce6/ccmcms-linternaute/1560979.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Damon Salvatore</h5>
<p class="card-text">
He is a vampire in vampire diaries, who is
part of a love triangle between his brother
Stefan and a female vampire named Katherine
Pierce whom they were both compelled to love
when they were still human. A century after
Damon and Stefan leave Mystic Falls, they
both return and meet Elena Gilbert, a mortal
who looks exactly like Katherine.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://www.google.com/imgres?imgurl=https%3A%2F%2Fstatic.toiimg.com%2Fphoto%2Fmsid-88522963%2F88522963.jpg&imgrefurl=https%3A%2F%2Ftimesofindia.indiatimes.com%2Fentertainment%2Fhindi%2Fbollywood%2Fnews%2Fmanoj-bajpayee-pankaj-tripathis-journey-has-been-inspiring-i-can-relate-to-him-quite-a-lot%2Farticleshow%2F88522963.cms&tbnid=mhCm9uh9EcDEWM&vet=12ahUKEwi81q_X48v6AhX3gGMGHSn7BCsQMygCegUIARDgAQ..i&docid=GNXnUMEeltWpTM&w=1200&h=900&q=manoj%20bajpayee&ved=2ahUKEwi81q_X48v6AhX3gGMGHSn7BCsQMygCegUIARDgAQ"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Manoj Bajpayee</h5>
<p class="card-text">
Manoj Bajpayee is a phenomenal actor but
thanks to the wide acceptance of the OTT
platforms, the Aligarh actor hit the
mainstream spotlight with The Family
Man, much like he did in his early days
with Satya. While he has appeared in
critically acclaimed films like Pinjar,
Gali Guleiyan and Gangs of Wasseypur,
the so-called commercial cinema has
roped in his talent for films like
Satyameva Jayate and Baaghi 2 among
others. With The Family Man, Bajpayee
led the cast from the front and since he
was present in more or less all the
story arcs, his ubiquitous presence made
the show all the more delightful.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://static.wikia.nocookie.net/lucifer/images/0/09/Lucifer_portrait.png/revision/latest?cb=20211006235903"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Lucifer Morningstar</h5>
<p class="card-text">
Lucifer Morningstar, created as Samael
(Hebrew: סַמָּאֵל) and also known as the
Lightbringer, is the titular protagonist of
the TV Series, Lucifer. He is an Archangel
and the twin brother of fellow Archangel,
Michael. Following a failed rebellion
against his Father, Lucifer was banished
from Heaven and forced to oversee the
torture of damned Human souls for eons as
the Ruler of Hell. During his time as the
King of Hell, Lucifer tempted Eve in the
Garden of Eden, leading to Eve and her
husband Adam being banished to live on Earth
for the rest of their lives. After some
visits to Earth, He would reunite with his
old friend, Lilith in 1946 to help her find
her ring. Lucifer was ultimately gifted the
ring, along with Lilith's Immortality.
Widely known as the Devil or Satan by
Humans, Lucifer is blamed for the sins of
mankind.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://i.pinimg.com/736x/72/69/f7/7269f76547cdb4634e307f7280b90e42.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Frozen Elsa</h5>
<p class="card-text">
Queen Elsa (also known as The Snow Queen) is
the deuteragonist of Disney's 2013 animated
feature film Frozen and protagonist of
Frozen II. She is the older sister of
Princess (later Queen) Anna and was next in
line for Arendelle's throne, until her
powers over ice and snow led her to become
the famous Snow Queen.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://upload.wikimedia.org/wikipedia/en/thumb/0/03/Walter_White_S5B.png/220px-Walter_White_S5B.png"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Walter White</h5>
<p class="card-text">
Walter was a skilled chemist and co-founder
of a technology firm before he accepted a
buy-out from his partners. Walt became a
high-school chemistry teacher in
Albuquerque, and barely making ends meet
with his family with wife Skyler (Anna Gunn)
and son Walt Jr. (RJ Mitte). At the start of
the series, the day after his 50th birthday,
Walt is diagnosed with Stage III lung
cancer.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="./assets/img/maara.jpeg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">
Nedumaaran Rajangam a.k.a MAARA⚡
</h5>
<p class="card-text">
<strong>Maara is a Marxist: </strong>He
questioned the existing social disorder,
where the Rich only enjoys the luxury of
Flying. <br />Why not a common man fly- the
thought process comes to him from the class
consciousness. When he can't fly with the
money he had to attend his father's funeral.
Maara's dream is to make the common man fly
and break the existing Capitalist model of
furthering the Rich man's interest.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="./assets/img/mrhan.jpeg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Kim Seon-ho</h5>
<p class="card-text">
Kim Seon-ho is a South Korean actor<br />
Kim Seon-ho is a South Korean actor. He
began his career on stage and appeared in
numerous plays before making his screen
debut in 2017 with Good Manager. He rose to
prominence with the television series
Start-Up and gained more recognition for his
main role in Hometown Cha-Cha-Cha, which
aired on tvN and Netflix.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="./assets/img/Nam Joo-hyuk.jpeg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Nam Joo-hyuk</h5>
<p class="card-text">
Nam Joo-hyuk is a South Korean model and
actor.<br />
He began his career as a model, and appeared
in several music videos before making his
screen debut in 2014 with The Idle Mermaid.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="./assets/img/klaus-mikaelson.jpg"
class="card-img-top"
style="
object-fit: contain;
height: 300px;
background-color: black;
"
alt="Niklaus Mikaelson"
/>
<div class="card-body">
<h5 class="card-title">Niklaus Mikaelson</h5>
<p class="card-text">
Niklaus Mikaelson is a lead character in the
famous TV shows The Vampire Diaries and The
Originals. He is an Original Vampire and an
Original Hybrid (Vampire + Werewolf). Klaus
is known as one of the most dreaded and
merciless Villain of the series. Klaus first
appeared in the second season of The Vampire
Diaries and continued till the fourth season
of the series, where he played an antagonist
role and later got himself a show of his own
called The Originals.
</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img
src="https://pbs.twimg.com/profile_images/1286660994782179328/Ehh8f9ml_400x400.jpg"
class="card-img-top"