-
Notifications
You must be signed in to change notification settings - Fork 1
/
indianNavyEquipmentsPage.html
3629 lines (3617 loc) · 196 KB
/
indianNavyEquipmentsPage.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Indian Navy Equipments</title>
<link rel="stylesheet" href="css/indianNavyEquipmentspageStyle.css" />
<link rel="icon" type="type/icon-x" href="images/favicon.png" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/v4-shims.css"
/>
</head>
<body>
<div class="navbar">
<a href="index.html"
><img
src="images/page_logo2.png"
alt="LOGO"
class="nav-image"
title="Operation Military Inventory"
/></a>
<p class="nav-logo">OP MILITARY INVENTORY</p>
<div class="nav-links">
<a href="index.html">HOME</a>
<a href="blog.html">BLOG</a>
<a href="feedback_page.html">FEEDBACK</a>
<a href="contact_page.html">CONTACT US</a>
<div class="sign-button">
<a href="sign_in_page.html"><h3>SIGN IN</h3></a>
</div>
</div>
</div>
<div class="sections">
<div class="page-heading">
<h1>INDIAN NAVY EQUIPMENTS</h1>
</div>
<div class="equipment-category-box">
<!--ssbn arihant class-->
<h1>Nuclear-powered ballistic missile submarines (SSBN) :</h1>
<h2>ARIHANT CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Arihant</h3>
<a href="https://en.m.wikipedia.org/wiki/INS_Arihant"
><img
src="images/navypage/Arihant.png"
alt="INS ARIHANT"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Arihant"
>
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/02/INS_Arihant_at_sea_%28cropped%29.jpg/480px-INS_Arihant_at_sea_%28cropped%29.jpg"
alt="INS Arihant"
/></a>
<p>
<b>INS Arihant </b>, designated S2 Strategic
Strike Nuclear Submarine, is the lead ship of
India's Arihant class of nuclear-powered
ballistic missile submarines. The 6,000 tonne
vessel was built under the Advanced Technology
Vessel (ATV) project at the Ship Building Centre
in the port city of Visakhapatnam.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Arihant"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn hidden-visibility">
<a href="assaultRiflesCategoryPage.html">SEE MORE</a>
</div>
</div>
</div>
<div class="sections">
<div class="equipment-category-box">
<!--SSK KALVARI-->
<h1>CONVENTIONALLY POWERED SUBMARINES (SSK) :</h1>
<h2>KALVARI CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Kalvari (S21)</h3>
<!--INS Kalvari (S21) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Kalvari_(S21)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/First_torpedo_firing_trials_of_INS_Kalvari_%28S50%29_-_4.jpg/160px-First_torpedo_firing_trials_of_INS_Kalvari_%28S50%29_-_4.jpg"
alt="INS Kalvari"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Kalvari_(S21)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8b/INS_Kalvari_%28S21%29_at_sea.jpg/480px-INS_Kalvari_%28S21%29_at_sea.jpg"
alt="INS Kalvari"
/></a>
<p>
The <b>INS Kalvari (S21) </b>is the first of the
six indigenous Scorpène-class submarines
currently in service with the Indian Navy. It is
a diesel-electric attack submarine which is
designed by DCNS and was manufactured at Mazagon
Dock Limited in Mumbai.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Kalvari_(S21)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Khanderi (S22)</h3>
<a
href="https://en.m.wikipedia.org/wiki/INS_Khanderi_(2017)"
><img
src="images/navypage/khanderi.jpg"
alt="INS Khanderi"
/>
</a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Khanderi_(2017)"
><img
src="images/navypage/INS-Khanderi.JPG"
alt="INS Khanderi"
/></a>
<p>
The <b>INS Khanderi (S22) </b>is the second of
the Indian Navy's six Kalvari-class submarines
being built in India. It is a diesel-electric
attack submarine which was designed by French
naval defence and energy company DCNS and
manufactured at Mazagon Dock Limited in Mumbai.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Khanderi_(2017)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Karanj (S23)</h3>
<!--INS KARANJ-->
<a
href="https://en.m.wikipedia.org/wiki/INS_Karanj_(S23)"
><img
src="images/navypage/karanj.jpg"
alt="INS Karanj"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Karanj_(S23)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/INS_Karanj_%28S23%29_during_commissioning_ceremony.jpg/480px-INS_Karanj_%28S23%29_during_commissioning_ceremony.jpg"
alt="INS Karanj"
/></a>
<p>
The <b>INS Karanj (S23) </b>is the third
submarine of the first batch of six
Kalvari-class submarines for the Indian Navy. It
is a diesel-electric attack submarine based on
the Scorpène class, designed by French naval
defence and energy group DCNS and manufactured
by Mazagon Dock Limited, an Indian shipyard in
Mumbai. The ship was launched on 31 January 2018
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Karanj_(S23)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Vela (S24)</h3>
<!--INS VELA-->
<a href="https://en.m.wikipedia.org/wiki/INS_Vela_(S24)"
><img src="images/navypage/vela.jpg" alt="INS Vela"
/></a>
<div class="equipment-info-right">
<a
href="https://en.m.wikipedia.org/wiki/INS_Vela_(S24)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/INS_Vela_%28S24%29_during_its_commissioning_ceremony.jpg/480px-INS_Vela_%28S24%29_during_its_commissioning_ceremony.jpg"
alt="INS Vela"
/></a>
<p>
The <b>INS Vela (S24) </b>is the fourth
submarine of the first batch of six
Kalvari-class submarines for the Indian Navy. It
is a diesel-electric attack submarine based on
the Scorpène class, designed by French naval
defence and energy group DCNS and manufactured
by Mazagon Dock Limited, an Indian shipyard in
Mumbai.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Vela_(S24)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn">
<a href="">SEE MORE</a>
</div>
</div>
<div class="equipment-category-box">
<!--SSK SINDHUGHOSH-->
<h2>SINDHUGHOSH CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Sindhughosh</h3>
<!--INS Sindhughosh (S55) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhughosh_(S55)"
><img
src="images/navypage/Sindhughosh.jpg"
alt="INS_Sindhughosh_(S55)"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhughosh_(S55)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/INS_Sindhughosh_%28S55%29.JPEG/480px-INS_Sindhughosh_%28S55%29.JPEG"
alt="INS_Sindhughosh_(S55)"
/></a>
<p>
The <b>INS Sindhughosh (S55) </b>is the lead
ship of her class of diesel-electric submarines
of the Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhughosh_(S55)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Sindhukirti</h3>
<!--INS Sindhukirti (S61)-->
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhukirti_(S61)"
><img
src="images/navypage/sindhukirti.jpg"
alt="INS_Sindhukirti_(S61)"
/>
</a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhukirti_(S61)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Ae_dq_ins_S62_1.jpg/370px-Ae_dq_ins_S62_1.jpg"
alt="INS_Sindhukirti_(S61)"
/></a>
<p>
The <b>INS Sindhukirti (S61) </b>is the seventh
Sindhughosh-class diesel-electric submarine of
the Indian Navy. She was built at the Admiralty
Shipyard and Sevmash in the Soviet Union.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhukirti_(S61)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Sindhuvijay</h3>
<!--INS Sindhuvijay (S62) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhuvijay_(S62)"
><img
src="images/navypage/sindhuvijay.jpg"
alt="INS_Sindhuvijay_(S62)"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhuvijay_(S62)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/73/Ins_S62.jpg/480px-Ins_S62.jpg"
alt="INS_Sindhuvijay_(S62)"
/></a>
<p>
The <b>INS Sindhuvijay (S62) </b>is a
Sindhughosh-class diesel-electric submarine of
the Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhuvijay_(S62)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Sindhushastra</h3>
<!--INS Sindhushastra (S65) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhurashtra_(S65)"
><img
src="images/navypage/sindhushastra.jpg"
alt="INS Sindhushastra (S65)"
/></a>
<div class="equipment-info-right">
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhurashtra_(S65)"
><img
src="images/navypage/ins sindhurashtra.jpg"
alt="INS Sindhushastra (S65)"
/></a>
<p>
The <b>INS Sindhushastra (S65) </b>is a
Sindhughosh-class diesel-electric submarine of
the Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Sindhurashtra_(S65)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn">
<a href="">SEE MORE</a>
</div>
</div>
</div>
<div class="sections">
<div class="equipment-category-box">
<!--SSK SHISHKUMAR-->
<h2>SHISHKUMAR CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Shishumar (S44)</h3>
<!--INS Shishumar (S44) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Shishumar_(S44)"
><img
src="images/navypage/shishumar.jpg"
alt="INS Shishkumar"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Shishumar_(S44)"
><img
src="images/navypage/shishumar.jpg"
alt="INS Shishkumar"
/></a>
<p>
The <b>INS Shishumar (S44) </b>is the lead
vessel of the Shishumar class of diesel-electric
submarines of the Indian Navy. She was
commissioned on 22 September 1986 under
Commander P M Bhate.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Shishumar_(S44)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Shankush (S45)</h3>
<!--INS Shankush (S45) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Shankush_(S45)"
><img
src="images/navypage/shankush.jpg"
alt="INS Shankush"
/>
</a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Shankush_(S45)"
><img
src="images/navypage/shankush.jpg"
alt="INS Shankush"
/></a>
<p>
The <b>INS Shankush (S45) </b>is a
Shishumar-class diesel-electric submarine of the
Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Shankush_(S45)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Shalki (S46)</h3>
<!--INS Shalki (S46) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Shalki_(S46)"
><img
src="images/navypage/shalki.jpg"
alt="INS Shalki"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Shalki_(S46)"
><img
src="images/navypage/shalki.jpg"
alt="INS Shalki"
/></a>
<p>
The <b>INS Shalki (S46) </b>is a Shishumar-class
diesel-electric submarine of the Indian Navy.
The submarine was the first ever submarine to be
built in India.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Shalki_(S46)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Shankul (S44)</h3>
<!--INS Shankul (S44) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Shankul_(S47)"
><img
src="images/navypage/shankul.jpg"
alt="INS Shankul"
/></a>
<div class="equipment-info-right">
<a
href="https://en.m.wikipedia.org/wiki/INS_Shankul_(S47)"
><img
src="images/navypage/shankul.jpg"
alt="INS Shankul"
/></a>
<p>
The <b>INS Shankul (S44) </b>is a
Shishumar-class diesel-electric submarine of the
Indian Navy. The submarine was the second to be
built in India.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Shankul_(S47)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn">
<a href="">SEE MORE</a>
</div>
</div>
<div class="equipment-category-box">
<!--AMPHIBIOUS WARFARE SHIP-->
<h1>Amphibious warfare ships :</h1>
<h2>MAGAR CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Magar</h3>
<!--INS Magar -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Magar_(L20)"
><img
src="images/navypage/magar.jpg"
alt="INS Magar"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Magar_(L20)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/INS_Magar_being_escorted_by_INS_Sujata.jpg/480px-INS_Magar_being_escorted_by_INS_Sujata.jpg"
alt="INS Magar"
/></a>
<p>
The <b>INS Magar </b>is the lead ship of
Magar-class amphibious warfare vessels of the
Indian Navy. She was built by Garden Reach
Shipbuilders and Engineers, Kolkata and was
commissioned by Admiral R.H. Tahiliani, Chief of
the Naval Staff on 15 July 1987. The ship has a
length of 120 metres and a beam of 1
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Magar_(L20)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Gharial</h3>
<!--INS Gharial -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Gharial_(L23)"
><img
src="images/navypage/gharial.jpg"
alt="INS Gharial"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Gharial_(L23)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/INS_Gharial_demonstrating_unloading_of_relief_material_through_its_bow_door_onto_the_ramp.jpg/480px-INS_Gharial_demonstrating_unloading_of_relief_material_through_its_bow_door_onto_the_ramp.jpg"
alt="INS Gharial"
/></a>
<p>
<b>INS Gharial </b>is a Magar-class amphibious
warfare vessel of the Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Gharial_(L23)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn">
<a href="">SEE MORE</a>
</div>
</div>
</div>
<div class="sections">
<div class="equipment-category-box">
<!--AMPHIBIOUS WARFARE SHIP-->
<h2>SHARDUL CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Shardul</h3>
<!--INS Shardul -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Shardul_(2004)"
><img
src="images/navypage/shardul.jpg"
alt="INS Shardul"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Shardul_(2004)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/INS_Shardul_%28L16%29_at_Port_Luis%2C_Mauritius.jpg/480px-INS_Shardul_%28L16%29_at_Port_Luis%2C_Mauritius.jpg"
alt="INS Shardul"
/></a>
<p>
The <b>INS Shardul </b>is the lead ship of the
Shardul-class amphibious warfare vessels of the
Indian Navy. On 3 October 2008, Shardul was
affiliated to the 5 Armoured Regiment of the
Indian Army in an on-board ceremony, at the
Mumbai Naval Base.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Shardul_(2004)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Kesari</h3>
<!--INS Kesari -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Kesari_(2005)"
><img
src="images/navypage/kesari.jpg"
alt="INS Kesari"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Kesari_(2005)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/INS_Kesari_during_Milan_2018_exercise.jpg/480px-INS_Kesari_during_Milan_2018_exercise.jpg"
alt="INS Kesari"
/></a>
<p>
<b>INS Kesari </b>is a Shardul-class tank
landing ship of the Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Kesari_(2005)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Airavat</h3>
<!--INS Airavat -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Airavat_(L24)"
><img
src="images/navypage/airavat.jpg"
alt="INS Airavat"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Airavat_(L24)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/The_INS_Airavat_sails_out_of_Visakhapatnam_harbour_after_commissioning_on_May_19%2C_2009.jpg/480px-The_INS_Airavat_sails_out_of_Visakhapatnam_harbour_after_commissioning_on_May_19%2C_2009.jpg"
alt="INS Airavat"
/></a>
<p>
<b>INS Airavat </b>is the third Shardul-class
amphibious warfare vessel of the Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Airavat_(L24)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn">
<a href="">SEE MORE</a>
</div>
</div>
<div class="equipment-category-box">
<!--AMPHIBIOUS WARFARE SHIP-->
<h2>KUMBHIR CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Cheetah</h3>
<!--INS Cheetah -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Cheetah_(L18)"
><img
src="images/navypage/cheetah.jpg"
alt="INS CHEETAH"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Cheetah_(L18)"
><img
src="images/navypage/cheetah.jpg"
alt="INS CHEETAH"
/></a>
<p>
The <b>INS Cheetah </b>is a Kumbhir-class tank
landing ship of the Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Cheetah_(L18)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Guldar</h3>
<!--INS Guldar -->
<a
href="https://en.wikipedia.org/wiki/IWI_Negev#Negev_NG-5"
><img
src="images/navypage/guldar.jpg"
alt="INS GULDAR"
/></a>
<div class="equipment-info">
<a
href="https://en.wikipedia.org/wiki/IWI_Negev#Negev_NG-5"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/L-32%2C_L-34%2C_L-21%2C_L-22_LSTs_and_LCUs_beached.jpg/480px-L-32%2C_L-34%2C_L-21%2C_L-22_LSTs_and_LCUs_beached.jpg"
alt="INS GULDAR"
/></a>
<p>
<b>INS Guldar </b>is a Kumbhir-class landing
ship of the Indian Navy.
</p>
<a
href="https://en.wikipedia.org/wiki/IWI_Negev#Negev_NG-5"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Kumbhir</h3>
<!--INS Kumbhir -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Kumbhir_(L22)"
><img
src="images/navypage/kumbhir.jpg"
alt="INS Kumbhir"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Kumbhir_(L22)"
><img
src="images/navypage/kumbhir.jpg"
alt="INS Kumbhir"
/></a>
<p>
<b>INS Kumbhir </b>is the lead vessel of her
class of the amphibious warfare ships of the
Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Kumbhir_(L22)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn">
<a href="">SEE MORE</a>
</div>
</div>
</div>
<div class="sections">
<div class="equipment-category-box">
<!--AIRCRAFT CARRIERS INS Vikramaditya -->
<h1>AIRCRAFT CARRIERS:</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Vikramaditya</h3>
<!--INS Vikramaditya -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Vikramaditya_(R33)"
><img
src="images/navypage/Vikramaditya.jpg"
alt="INS VIKRAMADITYA"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Vikramaditya_(R33)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/INS_Vikramaditya_%28R33%29_with_a_Sea_Harrier.jpg/480px-INS_Vikramaditya_%28R33%29_with_a_Sea_Harrier.jpg"
alt="INS VIKRAMADITYA"
/></a>
<p>
The <b>INS Vikramaditya </b>is a modified
Kiev-class aircraft carrier and the flagship of
the Indian Navy, which entered into service in
2013.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Vikramaditya_(R33)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn hidden-visibility">
<a href="">SEE MORE</a>
</div>
</div>
<div class="equipment-category-box">
<h1>DESTROYERS :</h1>
<h2>VISHAKHAPATNAM CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Visakhapatnam</h3>
<!--INS VISAKHAPATNAM-->
<a
href="https://en.m.wikipedia.org/wiki/INS_Visakhapatnam_(D66)"
><img
src="images/navypage/vishakapatnam.jpg"
alt="INS VISHAKAPATNAM"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Visakhapatnam_(D66)"
><img
src="images/navypage/vishakapatnam.jpg"
alt="INS VISHAKAPATNAM"
/></a>
<p>
The <b>INS Visakhapatnam </b>is the lead ship
and the first of the Visakhapatnam-class stealth
guided-missile destroyers of the Indian Navy.
The ship, commissioned on 21 November 2021, is
one of the largest destroyers in service with
the Indian Navy.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Visakhapatnam_(D66)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn hidden-visibility">
<a href="">SEE MORE</a>
</div>
</div>
</div>
<div class="sections">
<div class="equipment-category-box">
<h2>KOLKATA CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Kolkata</h3>
<!--INS Kolkata -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Kolkata_(D63)"
><img
src="images/navypage/kolkatta.jpg"
alt="INS KOLKATA"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Kolkata_(D63)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/201117-N-NC885-1128_%28cropped%29.jpg/480px-201117-N-NC885-1128_%28cropped%29.jpg"
alt="INS KOLKATA"
/></a>
<p>
The <b>INS Kolkata </b>is the lead ship of the
Kolkata-class stealth guided-missile destroyers
of the Indian Navy. She was constructed at
Mazagon Dock Limited (MDL), and was handed over
to the navy on 10 July 2014 after completing her
sea trials. The ship was officially commissioned
by Prime Minister Narendra Modi in a
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Kolkata_(D63)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Kochi (D64)</h3>
<!--INS Kochi (D64) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Kochi_(D64)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/201117-N-NC885-1128.jpg/200px-201117-N-NC885-1128.jpg"
alt="INS KOCHI"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Kochi_(D64)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/201117-N-NC885-1128.jpg/200px-201117-N-NC885-1128.jpg"
alt="INS KOCHI"
/></a>
<p>
The <b>INS Kochi (D64) </b>is the second ship of
the Kolkata-class stealth guided-missile
destroyers built under the code name Project 15A
for the Indian Navy. She was constructed by
Mazagon Dock Limited (MDL) in Mumbai. After
undergoing extensive sea trials, she was
commissioned to India
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Kochi_(D64)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Chennai (D65)</h3>
<!--INS Chennai (D65) -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Chennai_(D65)"
><img
src="images/navypage/chennai.jpg"
alt="INS CHENNAI"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Chennai_(D65)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/INS_Chennai_%28D65%29_during_an_exercise_in_the_Indian_Ocean_%28cropped%29.jpg/480px-INS_Chennai_%28D65%29_during_an_exercise_in_the_Indian_Ocean_%28cropped%29.jpg"
alt="INS CHENNAI"
/></a>
<p>
The <b>INS Chennai (D65) </b>is the third and
last ship of the Kolkata-class stealth guided
missile destroyers of the Indian Navy. She was
constructed by the Mazagon Dock Limited (MDL) at
Mumbai. On 17 April 2017, INS Chennai was
dedicated to the city of Chennai in presence of
then Chief Minister of Tamil
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Chennai_(D65)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
</div>
<div class="see-more-btn hidden-visibility">
<a href="">SEE MORE</a>
</div>
</div>
<div class="equipment-category-box">
<h2>RAJPUT CLASS</h2>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>INS Rana</h3>
<!--INS Rana -->
<a href="https://en.m.wikipedia.org/wiki/INS_Rana_(D52)"
><img src="images/navypage/Rana.jpg" alt="INS RANA"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Rana_(D52)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/88/Rana-081022-N-7730P-008.jpg/480px-Rana-081022-N-7730P-008.jpg"
alt="INS RANA"
/></a>
<p>
The <b>INS Rana </b>is a Rajput-class destroyer
in active service with the Indian Navy. She was
commissioned on 28 June 1982.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Rana_(D52)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>INS Ranvir</h3>
<!--INS Ranvir -->
<a
href="https://en.m.wikipedia.org/wiki/INS_Ranvir_(D54)"
><img
src="images/navypage/Ranvir.jpg"
alt="INS RANVIR"
/></a>
<div class="equipment-info">
<a
href="https://en.m.wikipedia.org/wiki/INS_Ranvir_(D54)"
><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/INS_Ravir_%28D54%29.jpg/480px-INS_Ravir_%28D54%29.jpg"
alt="INS RANVIR"
/></a>
<p>
The <b>INS Ranvir </b>is the fourth of the five
Rajput-class destroyers built for the Indian
Navy. Ranvir was commissioned on 28 October
1986.
</p>
<a
href="https://en.m.wikipedia.org/wiki/INS_Ranvir_(D54)"
class="wikipedia-link"
title="Know More about the Equipment"