-
Notifications
You must be signed in to change notification settings - Fork 0
/
members.html
855 lines (692 loc) · 33.1 KB
/
members.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./imgs/general/site-icon.png">
<title>SPP GROUP</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style-mobile.css">
<link rel="stylesheet" href="./css/style.css">
<script defer src="./js/app.js"></script>
<script src="https://unpkg.com/[email protected]/js-image-zoom.js" type="application/javascript"></script>
</head>
<body>
<!-- <section class="loading-screen-container" id="loading-screen-container">
<div class="loader">
<span></span>
<span></span>
<span></span>
<img src="./imgs/general/site-icon.png" alt="SPP GROUP">
</div>
</section> -->
<header>
<section id="fixed-to-top">
<div class="brand-div">
<a href="./index.html" class="brand-div-container">
<img src="./imgs/general/logo_Lab.png" id="lab-logo" alt="Lab Icon">
<div>
<p>Structure Property Processing Group</p>
<span>Materials Science Center, Indian Institute of Technology, Kharagpur, India</span>
</div>
<img src="./imgs/general/IIT_Kharagpur_Logo.png" id="iit-kgp-logo" alt="IIT KGP Icon">
</a>
</div>
<nav class="clear-both navigation">
<a href="./index.html">Home</a>
<a href="./members.html" class="active-page">Members</a>
<div class="hide-this">
<a href="./members.html#Team">Team</a>
<a href="./members.html#Alumni">Alumni</a>
</div>
<a class="nav-dropdown" href="./research.html">Research</a>
<div>
<a href="./research.html#ongoing-work">Ongoing Work</a>
<a href="./research.html#featured-work">Featured Work</a>
<a href="./research.html#funding">Funding and Collaborators</a>
</div>
<a href="./facilities.html">Facilities</a>
<a href="./refreshment.html">Refreshment</a>
<a href="./contact.html">Contact</a>
</nav>
</section>
</header>
<section class="all-container">
<section class="clear-both non-home-body-top-sec">
<h1 id="page-heading">Group Members</h1>
</section>
<section class="members-nav" id="members-nav">
<div class="members-nav-option" id="show-team" onclick="toggleMemberNav(this)">
<div class="first-members-options-div">
Team
</div>
<div class="div-menu" id="menu-team">
<div id="bar1" class="bar"></div>
<div class="bar" id="bar2"></div>
<div id="bar3" class="bar"></div>
</div>
</div>
<div class="members-nav-option" id="show-alumni" onclick="toggleMemberNav(this)">
<div class="first-members-options-div">
Alumni
</div>
<div class="div-menu" id="menu-alumni">
<div id="bar1" class="bar"></div>
<div class="bar" id="bar2"></div>
<div id="bar3" class="bar"></div>
</div>
</div>
</section>
<section class="for-gap" id="for-gap">
<!-- This section is created just to provide empty space on this page after the members nav, for smooth transition -->
</section>
<section class="hide-members members-tab" id="team-sec">
<h2 id="Team" class="subpage-heading">Team</h2>
<div class="shibayan-sir">
<img src="./imgs/group_members/team_members/shibayan.jpg " alt="Shibayan Sir">
<div>
<h3>
<hr>
Dr. Shibayan Roy
<hr>
</h3>
<article>
<h5>
Assistant Professor, IIT Kharagpur
</h5>
<p>
Dr. Shibayan Roy is currently an Assistant Professor in the Materials Science Center of
Indian
Institute of Technology IIT-Kharagpur in India. He has joined the institute in November 2015
and
continuing to date.
</p>
</article>
<!-- Links -->
<div class="shibayan-sir-links">
<a href="https://sites.google.com/site/shibayansdreams/home?authuser=0" target="_blank">Home
Website</a>
<a href="https://publons.com/researcher/2730857/shibayan-roy/" target="_blank">Researcher ID</a>
<a href="https://scholar.google.co.in/citations?user=YkEQ8ZsAAAAJ&oi=ao"
target="_blank">Google
Scholar</a>
<a href="mailto:[email protected]" target="_blank">Email</a>
</div>
</div>
</div>
<div class="all-team">
<div>
<figure>
<img src="./imgs/group_members/team_members/souvik.jpg" alt="Souvik Sahoo">
<figcaption>
<a href="https://drive.google.com/file/d/0Bzb-lXif_LfzLUhpVXh6MzBuWE0/view?resourcekey=0-Zjp_q-NcNMN46SaY9eQOoQ"
target="_blank" class="cv_link">
<abbr title="CV">
Souvik Sahoo
<br>
<span style="font-size: 0.8em;"> <strong>[ Research Scholar ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/ashoktaru.jpg" alt="Ashoktaru Chakraborty">
<figcaption>
<a href="https://drive.google.com/file/d/0Bzb-lXif_LfzWlUtcFN1ZDc3MTA/view?resourcekey=0-pzbdoWtK4tzUf_zVmBpf0w"
target="_blank" class="cv_link">
<abbr title="CV">
Ashoktaru Chakraborty
<br>
<span style="font-size: 0.8em;"> <strong>[ Research Scholar ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/samarendra.jpg" alt="Samarendra Roy">
<figcaption>
<a href="https://drive.google.com/file/d/0Bzb-lXif_LfzYnFxZXJtNWVtV2s/view?resourcekey=0-Em48P5GNXQr06hJ2qgFnXw"
target="_blank" class="cv_link">
<abbr title="CV">
Samarendra Roy
<br>
<span style="font-size: 0.8em;"> <strong>[ Research Scholar ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/kamalika.jpg" alt="Kamalika Mandal">
<figcaption>
<a href="https://drive.google.com/file/d/13b4-i5VCW7gwz-iQkJ_qYEbOYlvefCbM/view"
target="_blank" class="cv_link">
<abbr title="CV">
Kamalika Mandal
<br>
<span style="font-size: 0.8em;"> <strong>[ Research Scholar ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/samar.jpg" alt="Samar Mondal">
<figcaption>
<a href="NA" target="_blank" class="cv_link">
<abbr title="CV">
Samar Mondal
<br>
<span style="font-size: 0.8em;"> <strong>[ Research Scholar ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/roja.jpg" alt="Roja Rani K.">
<figcaption>
<a href="https://drive.google.com/file/d/1atfgCWapOVyh9-ttLhps087THkDs-fVz/view"
target="_blank" class="cv_link">
<abbr title="CV">
Roja Rani K.
<br>
<span style="font-size: 0.8em;"> <strong>[ Research Scholar ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/saumya.jpg" alt="Saumya Gupta">
<figcaption>
<a href="https://drive.google.com/file/d/1aqS2DG0dbavlhlXNCpxeCYCOvOt_L__f/view"
target="_blank" class="cv_link">
<abbr title="CV">
Saumya Gupta
<br>
<span style="font-size: 0.8em;"> <strong>[ Research Scholar ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/arjun.jpg" alt="Arjun Mahato">
<figcaption>
<a href="https://drive.google.com/file/d/1EZxw0wogV4guwT_EqD8SYha5wuH83Sk8/view"
target="_blank" class="cv_link">
<abbr title="CV">
Arjun Mahato
<br>
<span style="font-size: 0.8em;"> <strong>[ Research Scholar ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/faizal.jpg" alt="Mohamed Faizal Usaama J.">
<figcaption>
<a href="https://drive.google.com/file/d/1rje9h1WWSieCC140SJ9s9GVXTyQyr5EY/view"
target="_blank" class="cv_link">
<abbr title="CV">
Mohamed Faizal Usaama J.
<br>
<span style="font-size: 0.8em;"> <strong>[ MS Student ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/malarvizhi.jpg" alt="Malarvizhi Thangarasu">
<figcaption>
<a href="https://drive.google.com/file/d/1mRTvOE1pBqGHT4yVjnCeXNrc9bWaj-gk/view"
target="_blank" class="cv_link">
<abbr title="CV">
Malarvizhi Thangarasu
<br>
<span style="font-size: 0.8em;"> <strong>[ M. Tech ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="./imgs/group_members/team_members/lalit.jpg" alt="Lalit Ahlawat">
<figcaption>
<a href="NA" target="_blank" class="cv_link">
<abbr title="CV">
Lalit Ahlawat
<br>
<span style="font-size: 0.8em;"> <strong>[ M. Tech ]</strong> </span>
</abbr>
</a>
</figcaption>
</figure>
</div>
<!-- <hr class="clear-both invisible"> -->
</div>
<div id="team-interns">
<!-- <hr class="clear-both"> -->
<h3>Interns</h3>
<!-- <hr> -->
<ul>
<li>
Nidhi Gupta, Visvesvaraya National Institute of Technology VNIT Nagpur (August 2020-)
</li>
<li>
Shubhadip Paul, National Institute of Technology Durgapur (April 2021-)
</li>
<li>
Rohan Pathy, National Institute of Technology Rourkela (April 2021-)
</li>
</ul>
</div>
</section>
<section class="hide-members members-tab" id="alumni-sec">
<h2 id="Alumni" class="subpage-heading">Alumni</h2>
<div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/mrinmoy.jpg" alt="Mrinmoy Garari">
<article>
<h3>
Mrinmoy Garari
</h3>
<p>
<ul>
<li>
Post-doctoral fellow (DST-SERB N-PDF) from March 2017 to March 2019
</li>
<li>
Project: Processing, microstructure and mechanical properties of high-strength Mica and
Leucite based glass-ceramics
</li>
<li>
Current status: Quality Assurance Officer, Directorate General of Aeronautical Quality
Assurance (DGAQA), Ministry of Defense, Govt. of India
</li>
<li>
Previous Education: Ph. D. (Chemistry), Jadavpur University, 2016 (Worked at:
CSIR-Central
Glass & Ceramic Research Institute, Kolkata, India)
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/sunil.jpg" alt="Sunil Yadav">
<article>
<h3>
Sunil Yadav
</h3>
<p>
<ul>
<li>
Course registered: M. Tech (July 2015 - May 2017)
</li>
<li>
Current status: Doctoral student at IIT Madras
</li>
<li>
Project: Microstructure-processing-property correlation in machinable glass ceramics
</li>
<li>
Previous Education: B.E. in Metallurgical Engineering, O.P. Jindal Institute of
Technology,
Raigarh, Chattisgarh
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/silva.jpg" alt="Silva Basu">
<article>
<h3>
Silva Basu
</h3>
<p>
<ul>
<li>
Course registered: M. Tech (July 2015 - May 2017)
</li>
<li>
Current status: Doctoral student at Karlsruhe Institute of Technology, Germany
</li>
<li>
Project: Strain rate sensitivity of a TRIP-assisted dual-phase high-entropy alloy (as a
DAAD
fellow in RWTH Aachen & MPIE Dusseldorf, Germany)
</li>
<li>
Previous Education: B Tech in Metallurgical and Materials Engineering, Jadavpur
University,
Kolkata
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/anuja.jpg" alt="Anuja P. Joshi">
<article>
<h3>
Anuja P. Joshi
</h3>
<p>
<ul>
<li>
Course registered: M. Tech (July 2015 - May 2017)
</li>
<li>
Current Status: Research Scientist at Airbus India
</li>
<li>
Project: Processing - microstructure - mechanical property relationship in additive
manufactured (LENS) Ti-6Al-4V alloy
</li>
<li>
Previous Education: B. Tech in Metallurgy and Material Science, College of Engineering,
Pune
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/anoop.jpg" alt="Anoop Kumar Maurya">
<article>
<h3>
Anoop Kumar Maurya
</h3>
<p>
<ul>
<li>
Current status: Doctoral student at School of Materials Science and Engineering,
Gyeongsang
National University, South Korea
</li>
<li>
Course registered: M. Tech (July 2016 - May 2018)
</li>
<li>
Project: Effect of process variables on the microstructure, micro-texture and mechanical
properties of additive manufactured (LENS) Ti-6Al-4V alloy
</li>
<li>
Previous Education: M.Sc in General Chemistry, VNIT Nagpur
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/biswajit.jpg" alt="Biswajit M. Patra">
<article>
<h3>
Biswajit M. Patra
</h3>
<p>
<ul>
<li>
Course registered: M. Tech (July 2017 - May 2019)
</li>
<li>
Current status: Research scientist at Tata Steel India
</li>
<li>
Project: Microstructure-processing-mechanical property relationship of hot pressed
(powder
metallurgy) Cu-Sn alloy
</li>
<li>
Previous Education: B. Tech in Ceramic Engineering, National Institute of Technology NIT
Rourkela, Odisha
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/sushmita.jpg" alt="Sushmita Sharma">
<article>
<h3>
Sushmita Sharma
</h3>
<p>
<ul>
<li>
Course registered: M. Tech (July 2017 - May 2019)
</li>
<li>
Current status: Research scientist at Tata Advanced Systems Ltd.
</li>
<li>
Project: Structure-property relationship of a) Direct metal laser sintering (DMLS)
manufactured Ti-6Al-4V alloy, and b) ZrO2 containing Mica glass ceramics
</li>
<li>
Previous Education: B. Tech in Nanotechnology, Central University of Jharkhand, Ranchi,
Jharkhand
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/saumya.jpg" alt="Saumya Gupta">
<article>
<h3>
Saumya Gupta
</h3>
<p>
<ul>
<li>
Course registered: M. Tech (July 2018 - May 2020)
</li>
<li>
Current status: Doctoral student at Materials Science Center, IIT Kharagpur
</li>
<li>
Project: Structure-property relationship in additively manufactured steel and
Ni-superalloys
(In collaboration with Wayne State University, USA)
</li>
<li>
Previous Education: Masters of Science (Physics), Kanpur University (C.S.J.M.U.)
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/arjun.jpg" alt="Arjun Mahato">
<article>
<h3>
Arjun Mahato
</h3>
<p>
<ul>
<li>
Course registered: M. Tech (July 2018 - May 2020)
</li>
<li>
Current status: Doctoral student at Materials Science Center, IIT Kharagpur
</li>
<li>
Project: Structure-property relationship for C-fiber reinforced MMC and CMC (In
collaboration with Tata Steel)
</li>
<li>
Previous Education: B. Tech in Nanotechnology from Central university of Jharkhand,
Ranchi
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/kavin.jpg" alt="Kavin Kannan">
<article>
<h3>
Kavin Kannan
</h3>
<p>
<ul>
<li>
Course registered: M. Tech (July 2019 -May 2021)
</li>
<li>
Current status: Scientist in Bureau of Indian Standards (BIS)
</li>
<li>
Project: Microstructure and texture evolution during thermo-mechanical processing of
Titanium alloys
</li>
<li>
Previous Education: B. E. in Metallurgical Engineering, PSG College of Technology,
Coimbatore
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
<div class="individual-profile">
<img src="./imgs/group_members/alumni/phani.jpg" alt="Chalapakka Phani N.">
<article>
<h3>
Chalapakka Phani N.
</h3>
<p>
<ul>
<li>
Course registered: M. Tech (July 2019 -May 2021)
</li>
<li>
Current status: Applying for higher studies
</li>
<li>
Project: Structure-property relationship for C-fibre reinforced ultra-high temperature
(UHC)
ceramics composites
</li>
<li>
Previous Education: B. E. in Metallurgical Engineering, JNTUK University College of
Engineering, Vizianagaram
</li>
</ul>
</p>
<a href="mailto:[email protected]">Contact</a>
</article>
</div>
</div>
<div id="alumni-interns">
<h3>Intern Alumni</h3>
<ul>
<li>
Anubhav Singh, Birla Institute of Technology Mesra, Jharkhand (May-July 2017)
</li>
<li>
Deeksha Kodangal, National Institute of Technology, Karnataka (December 2017-January 2018)
</li>
<li>
Abhirup Saha, Indian Institute of Technology, IIT Kanpur (December 2017-January 2018)
</li>
<li>
Subham Ray, National Institute of Technology NIT Durgapur (December 2018-January 2019;
August-November 2020 )
</li>
<li>
Milind Nayek, University of Waterloo, Canada (January -April 2019)
</li>
<li>
Munmi Das, National Institute of Technology NIT Rourkela (May-July 2019)
</li>
<li>
Bhaskarjyoti Das, Indian Institute of Engineering Science and Technology (IIEST), Shibpur
(May-July
2019)
</li>
<li>
Koomarmangalam Dey, Indian Institute of Technology, IIT Kharagpur (May-July 2019; May 2020)
</li>
<li>
Pronoy Roy, National Institute of Technology NIT Durgapur (June 2020-September 2020)
</li>
<li>
Tharun Reddy, Sir M. Visvesvaraya Institute of Technology, Bangalore (September 2020-January
2021)
</li>
</ul>
</div>
</section>
</section>
<hr class="clear-both hide-this">
<footer>
© 2021 by SPP GROUP
</footer>
<script>
window.addEventListener("load", function () {
const loader = document.querySelector(".loading-screen-container");
loader.className += " loaded";
function setActiveNav() {
const page = document.getElementById('page-heading')
let pageName
if (page == null) {
pageName = "home"
} else {
pageName = page.innerHTML.toLowerCase()
}
if (pageName === "group members") {
pageName = "members"
}
const allLinks = document.getElementsByTagName('a')
function setActiveClass(pageName, allLinks) {
const len = Object.keys(allLinks).length
for (let i = 0; i < len; i++) {
element = allLinks[i]
if (element.innerHTML.toLowerCase() === pageName) {
element.className += " active"
}
}
};
setActiveClass(pageName, allLinks)
}
setActiveNav()
})
</script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"></script>
</body>
</html>