-
Notifications
You must be signed in to change notification settings - Fork 1
/
indianArmyEquipmentsPage.html
2943 lines (2918 loc) · 160 KB
/
indianArmyEquipmentsPage.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 Army Equipments</title>
<link rel="stylesheet" href="css/indianArmyEquipmentspageStyle.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 ARMY EQUIPMENTS</h1>
</div>
<div class="equipment-category-box">
<h1>ASSAULT RIFLES :</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>1B1 INSAS</h3>
<a href="1b1 insas.html"
><img
src="images/assault rifles/1B1 INSAS.png"
alt="1B1 INSAS"
/></a>
<div class="equipment-info">
<a href="1b1 insas.html"
><img
src="images/assault rifles/insas.jpg"
alt="Insas"
/></a>
<p>
<b>INSAS or Indian Small Arms System</b> is a
family of infantry arms consisting of an assault
rifle and a light machine gun (LMG). It was
designed by the Armament Research and
Development Establishment and manufactured by
the Ordnance Factories Board at its various
factories. The INSAS assault rifle was the
standard infantry weapon of the Indian Armed
Forces for almost three decades.
</p>
<a
href="1b1 insas.html"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>AK-203</h3>
<a href="https://en.wikipedia.org/wiki/AK-203"
><img
src="images/assault rifles/AK-203.png"
alt="AK-203"
/></a>
<div class="equipment-info-right">
<a href="https://en.wikipedia.org/wiki/AK-203"
><img
src="images/assault rifles/AK-203.jpg"
alt="AK-203"
/></a>
<p>
The <b>AK-203</b> is a gas-operated,
magazine-fed, select fire assault rifle designed
to chamber 7.62x39mm cartridge. It is one of the
latest iterations of the AK series of assault
rifles originally designed by Mikhail
Kalashnikov. The AK-203 assault rifles will be
manufactured by an Indo-Russian joint venture
company, Indo-Russia Rifles Private Limited
(IRRPL), based at Amethi, India.
</p>
<a
href="https://en.wikipedia.org/wiki/AK-203"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>SIG-716 i</h3>
<a href="https://en.wikipedia.org/wiki/SIG_Sauer_SIG516"
><img
src="images/assault rifles/SIG-716 i.png"
alt="SIG-716 i"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/SIG_Sauer_SIG516"
><img
src="images/assault rifles/SIG-716 i.jpg"
alt="SIG-716 i"
/></a>
<p>
The <b>SIG Sauer SIG516</b> is a semi-automatic
rifle manufactured by SIG Sauer. It is an AR-15
style rifle chambered in 5.56x45mm NATO.
Introduced in 2010, the SIG516 was discontinued
as of 2019. A variant chambered in 7.62x51mm
NATO, the SIG716i, remains in production.
</p>
<a
href="https://en.wikipedia.org/wiki/SIG_Sauer_SIG516"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>FN SCAR L</h3>
<a href="https://en.wikipedia.org/wiki/FN_SCAR"
><img
src="images/assault rifles/FN SCAR L.png"
alt="FN SCAR L"
/></a>
<div class="equipment-info-right">
<a href="https://en.wikipedia.org/wiki/FN_SCAR"
><img
src="images/assault rifles/FN SCAR L.jpg"
alt="FN SCAR L"
/></a>
<p>
The <b>FN SCAR</b> (<b>S</b>pecial Operations
Forces <b>C</b>ombat <b>A</b>ssault
<b>R</b>ifle) is a family of gas-operated
(short-stroke gas piston) automatic rifles
developed by Belgian manufacturer FN Herstal
(FN) in 2004. It is constructed with modularity
for the United States Special Operations Command
(SOCOM) to satisfy the requirements of the SCAR
competition.
</p>
<a
href="https://en.wikipedia.org/wiki/FN_SCAR"
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="assaultRiflesCategoryPage.html">SEE MORE</a>
</div>
</div>
</div>
<div class="sections">
<div class="equipment-category-box">
<h1>SNIPER RIFLES :</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>Dragunov SVD</h3>
<a
href="https://en.wikipedia.org/wiki/Dragunov_Sniper_Rifle"
><img
src="images/indianArmyEquipmentsPage/Dragunov SVD.png"
alt="Dragunov SVD"
/></a>
<div class="equipment-info">
<a
href="https://en.wikipedia.org/wiki/Dragunov_Sniper_Rifle"
><img
src="images/sniper rifles/Dragunov sniper rifle.jpg"
alt="Dragunov SVD"
/></a>
<p>
The <b>Dragunov sniper rifle</b> is a
semi-automatic designated marksman rifle
chambered in 7.62x54mmR and developed in the
Soviet Union.
</p>
<a
href="https://en.wikipedia.org/wiki/Dragunov_Sniper_Rifle"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>IMI GALIL 7.62 SNIPER</h3>
<a
href="https://en.wikipedia.org/wiki/IMI_Galil#7.62mm_variants"
><img
src="images/indianArmyEquipmentsPage/IMI GALIL SNIPER.png"
alt="IMI GALIL 7.62 SNIPER"
/>
</a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/IMI_Galil#7.62mm_variants"
><img
src="images/sniper rifles/IMI GALIL 7.62 SNIPER.jpg"
alt="IMI GALIL 7.62 SNIPER"
/></a>
<p>
The <b>IMI Galil </b>(Hebrew: גליל) is a family
of Israeli-made automatic rifles chambered for
the 5.56×45mm NATO or 7.62×51mm NATO cartridges.
Originally designed by Yisrael Galili and Yakov
Lior in the late 1960s, the Galil was first
produced by the state-owned Israel Military
Industries and are now exported by the
privatized Israel Weapon Industries.
</p>
<a
href="https://en.wikipedia.org/wiki/IMI_Galil#7.62mm_variants"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>HECKLER & KOCH PSG1</h3>
<a
href="https://en.wikipedia.org/wiki/Heckler_%26_Koch_PSG1"
><img
src="images/indianArmyEquipmentsPage/PSG1.png"
alt="HECKLER & KOCH PSG1"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/Heckler_%26_Koch_PSG1"
><img
src="images/sniper rifles/HECKLER & KOCH PSG1.jpg"
alt="HECKLER & KOCH PSG1"
/></a>
<p>
The
<b>PSG1</b>
(<b>P</b>räzisions<b>s</b>chützen<b>g</b>ewehr,
German for "precision shooting rifle") is a
semi-automatic sniper rifle designed and
produced by the German company Heckler & Koch.
</p>
<a
href="https://en.wikipedia.org/wiki/Heckler_%26_Koch_PSG1"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>MAUSER SP66</h3>
<a href="https://en.wikipedia.org/wiki/Mauser"
><img
src="images/indianArmyEquipmentsPage/MAUSER SP66.png"
alt="MAUSER SP66"
/></a>
<div class="equipment-info-right">
<a href="https://en.wikipedia.org/wiki/Mauser"
><img
src="images/sniper rifles/MAUSER SP66.jpg"
alt="MAUSER SP66"
/></a>
<p>
The<b> SP66</b> is a late Cold War era sniper
rifle of German origin. It was developed by
Mauser in the mid-1970’s from a conventional
hunting rifle design. The SP66 was developed for
both military and law enforcement use. The SP66
was replaced in production with the Mauser 86SR.
</p>
<a
href="https://en.wikipedia.org/wiki/Mauser"
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">
<h1>MACHINE GUNS :</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>FN MINIMI</h3>
<a href="https://en.wikipedia.org/wiki/FN_Minimi"
><img
src="images/indianArmyEquipmentsPage/FN MINIMI and MK 48.png"
alt="FN MINIMI"
/></a>
<div class="equipment-info">
<a href="https://en.wikipedia.org/wiki/FN_Minimi"
><img
src="images/machine guns/FN MINIMI.jpg"
alt="FN MINIMI"
/></a>
<p>
The <b>FN Minimi</b> (short for French: Mini
Mitrailleuse; "mini machine gun") is a Belgian
5.56mm light machine gun developed by Ernest
Vervier, for FN Herstal. First introduced in the
late 1970s, it is now in service in more than 75
countries.[13] The weapon is currently
manufactured at the FN facility in Herstal and
their U.S. subsidiary FN Manufacturing LLC.
</p>
<a
href="https://en.wikipedia.org/wiki/FN_Minimi"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>IMI NEGEV NG5</h3>
<a
href="https://en.wikipedia.org/wiki/IWI_Negev#Negev_NG-5"
><img
src="images/indianArmyEquipmentsPage/IMI NEGEV NG5.png"
alt="IMI NEGEV NG5"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/IWI_Negev#Negev_NG-5"
><img
src="images/machine guns/IMI NEGEV NG5.jpg"
alt="IMI NEGEV NG5"
/></a>
<p>
<b>Negev NG-5</b> is a light machine gun is
chambered in 5.56×45mm NATO cartridge. It has a
barrel length of 460 mm (18.11 inch) and two
operation modes; semi-automatic for accurate and
fast controlled fire, and fully automatic for
maximum firepower.
</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>M2 BROWNING</h3>
<a href="https://en.wikipedia.org/wiki/M2_Browning"
><img
src="images/indianArmyEquipmentsPage/M2 BROWNING.png"
alt="M2 BROWNING"
/></a>
<div class="equipment-info-right">
<a href="https://en.wikipedia.org/wiki/M2_Browning"
><img
src="images/machine guns/M2 BROWNING.jpg"
alt="M2 BROWNING"
/></a>
<p>
The <b>M2 machine gun</b> or
<b>Browning .50 caliber machine gun</b> is a
heavy machine gun designed toward the end of
World War I by John Browning. Its design is
similar to Browning's earlier M1919 Browning
machine gun, which was chambered for the .30-06
cartridge. The M2 uses the much larger and much
more powerful .50 BMG (12.7 mm) cartridge, which
was developed alongside and takes its name from
the gun itself (BMG standing for Browning
machine gun). It has been referred to as "Ma
Deuce", in reference to its M2 nomenclature.
</p>
<a
href="https://en.wikipedia.org/wiki/M2_Browning"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>MK 48</h3>
<a
href="https://en.wikipedia.org/wiki/Mk_48_machine_gun"
><img
src="images/indianArmyEquipmentsPage/FN MINIMI and MK 48.png"
alt="MK 48"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/Mk_48_machine_gun"
><img
src="images/machine guns/MK 48.jpg"
alt="MK 48"
/></a>
<p>
The <b>Mk 48 (Mark 48)</b>, or <b>Maximi</b> is
a lightweight belt-fed machine gun, firing
7.62×51mm NATO cartridges from a disintegrating
belt of ammunition. It is manufactured by
Fabrique Nationale Manufacturing, Inc., a
division of FN Herstal based in the United
States. The Mk 48 has been developed in
conjunction with the U.S. Special Operations
Command (USSOCOM), which has adopted the weapon
and started its fielding process, beginning with
special operations units.
</p>
<a
href="https://en.wikipedia.org/wiki/Mk_48_machine_gun"
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">
<h1>HANDGUNS :</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>PISTOL AUTO 9MM 1A</h3>
<a
href="https://en.wikipedia.org/wiki/Pistol_Auto_9mm_1A"
><img
src="images/indianArmyEquipmentsPage/PISTOL AUTO.png"
alt="PISTOL AUTO 9MM 1A"
/></a>
<div class="equipment-info">
<a
href="https://en.wikipedia.org/wiki/Pistol_Auto_9mm_1A"
><img
src="images/handguns/PISTOL AUTO 9MM 1A.jpg"
alt="PISTOL AUTO 9MM 1A"
/></a>
<p>
The <b>Pistol Auto 9mm 1A</b> also known as
<b>IOF 9mm pistol</b>
is a semi-automatic pistol manufactured by Rifle
Factory Ishapore. It's a licensed copy of the
Browning Hi-Power, made using tooling acquired
from John Inglis and Company. It is the main
service pistol of Indian military and police
units.
</p>
<a
href="https://en.wikipedia.org/wiki/Pistol_Auto_9mm_1A"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>GLOCK</h3>
<a href="https://en.wikipedia.org/wiki/Glock"
><img
src="images/indianArmyEquipmentsPage/GLOCK.png"
alt="GLOCK"
/></a>
<div class="equipment-info-right">
<a href="https://en.wikipedia.org/wiki/Glock"
><img
src="images/handguns/GLOCK.jpg"
alt="GLOCK"
/></a>
<p>
<b>Glock</b> is a brand of polymer-framed, short
recoil-operated, locked-breech semi-automatic
pistols designed and produced by Austrian
manufacturer Glock Ges.m.b.H. The firearm
entered Austrian military and police service by
1982 after it was the top performer in
reliability and safety tests.
</p>
<a
href="https://en.wikipedia.org/wiki/Glock"
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>SHOTGUNS :</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>12 BORE PAG</h3>
<a
href="http://ddpdoo.gov.in/product/products/product-details/12-bore-pump-action-gun-nylon-butt-"
><img
src="images/indianArmyEquipmentsPage/12 BORE PAG.png"
alt="12 BORE PAG"
/></a>
<div class="equipment-info">
<a
href="http://ddpdoo.gov.in/product/products/product-details/12-bore-pump-action-gun-nylon-butt-"
><img
src="images/shotguns/12 Bore PAG.jpg"
alt="12 Bore PAG"
/></a>
<p>
The <b>12 Bore Pump Action Gun</b> has been
specially developed for use as a security
weapon. It is a single barrel breach loading
weapon superior to 12 Bore DBBL. It is provided
with a tubular magazine, which holds 4 nos. of
12 Bore Cartridges and is placed parallel to and
below the barrel. Extraction, loading and
cocking of the cartridges take place in a single
'pump action' by operating handle, sliding along
the magazine. Due to rapid reloading by pump
action and spread of shots, it is an ideal
weapon for counter ambush tactics.
</p>
<a
href="http://ddpdoo.gov.in/product/products/product-details/12-bore-pump-action-gun-nylon-butt-"
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">
<h1>SMGs :</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>HECKLER & KOCH MP5</h3>
<a
href="https://en.wikipedia.org/wiki/Heckler_%26_Koch_MP5"
><img
src="images/indianArmyEquipmentsPage/MP5.png"
alt="HECKLER & KOCH MP5"
/></a>
<div class="equipment-info">
<a
href="https://en.wikipedia.org/wiki/Heckler_%26_Koch_MP5"
><img
src="images/smgs/HECKLER & KOCH MP5.webp"
alt="HECKLER & KOCH MP5"
/></a>
<p>
The <b>MP5</b> (German: Maschinenpistole 5) is a
9x19mm Parabellum submachine gun, developed in
the 1960s by a team of engineers from the German
small arms manufacturer Heckler & Koch GmbH
(H&K) of Oberndorf am Neckar. There are over 100
variants and clones of the MP5, including some
semi-automatic versions.
</p>
<a
href="https://en.wikipedia.org/wiki/Heckler_%26_Koch_MP5"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>MICRO-UZI</h3>
<a
href="https://en.wikipedia.org/wiki/Uzi#Military_variants"
><img
src="images/indianArmyEquipmentsPage/MICRO-UZI.png"
alt="MICRO-UZI"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/Uzi#Military_variants"
><img
src="images/smgs/MICRO-UZI.jpg"
alt="MICRO-UZI"
/></a>
<p>
The <b>Uzi Submachine Gun</b> is a standard Uzi
with a 10-inch (250 mm) barrel. It has a rate of
automatic fire of 600 rounds per minute (rpm)
when chambered in 9mm Parabellum; the .45 ACP
model's rate of fire is slower at 500 rpm.
</p>
<a
href="https://en.wikipedia.org/wiki/Uzi#Military_variants"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>SAF CARBINE 2A1</h3>
<a
href="https://en.wikipedia.org/wiki/Sterling_submachine_gun"
><img
src="images/indianArmyEquipmentsPage/SAF CARBINE 2A1.png"
alt="SAF CARBINE 2A1"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/Sterling_submachine_gun"
><img
src="images/smgs/SAF CARBINE 2A1.jpg"
alt="SAF CARBINE 2A1"
/></a>
<p>
The <b>Sterling submachine gun</b> is a British
submachine gun. It was tested with the British
Army in 1944-1945 as a replacement for the Sten
but it did not start to replace it until 1953. A
successful and reliable design, it remained as
standard issue with the British Army until 1994,
when it was phased out as the L85A1 assault
rifle was phased in.
</p>
<a
href="https://en.wikipedia.org/wiki/Sterling_submachine_gun"
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>GRENADES :</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>MULTI GRENADE LAUNCHER 40MM</h3>
<a href="https://en.wikipedia.org/wiki/Milkor_MGL"
><img
src="images/indianArmyEquipmentsPage/MULTI GRENADE LAUNCHER 40MM.png"
alt="MULTI GRENADE LAUNCHER 40MM"
/></a>
<div class="equipment-info">
<a href="https://en.wikipedia.org/wiki/Milkor_MGL"
><img
src="images/grenades/Milkor MGL.jpg"
alt="MULTI GRENADE LAUNCHER 40MM"
/></a>
<p>
The <b>Milkor MGL</b> (Multiple Grenade
Launcher) is a lightweight 40 mm six-shot
revolver-type grenade launcher (variations also
fire 37/38mm) developed and manufactured in
South Africa by Milkor (Pty) Ltd. The MGL was
demonstrated as a concept to the South African
Defence Force (SADF) in 1981. The MGL was then
officially accepted into service with the SADF
as the Y2. After its introduction in 1983, the
MGL was gradually adopted by the armed forces
and law enforcement organizations of over 50
countries.
</p>
<a
href="https://en.wikipedia.org/wiki/Milkor_MGL"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>ARDE 40MM UBGL</h3>
<a
href="https://en.wikipedia.org/wiki/ARDE_40_mm_under_barrel_grenade_launcher"
><img
src="images/indianArmyEquipmentsPage/ARDE 40MM UBGL.png"
alt="ARDE 40MM UBGL"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/ARDE_40_mm_under_barrel_grenade_launcher"
><img
src="images/grenades/ARDE 40MM UBGL.jpg"
alt="ARDE 40MM UBGL"
/></a>
<p>
The <b>40 mm Under Barrel Grenade Launcher</b>,
is a single shot grenade launcher developed by
ARDE and Ordnance Factory Tiruchirappalli for
use with the INSAS and AK-47 rifles used by the
Indian Army. Stand alone versions of the grenade
launcher exist.
</p>
<a
href="https://en.wikipedia.org/wiki/ARDE_40_mm_under_barrel_grenade_launcher"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>RCL MK II/MK III</h3>
<a
href="https://en.wikipedia.org/wiki/Carl_Gustav_recoilless_rifle"
><img
src="images/indianArmyEquipmentsPage/RCL.png"
alt="RCL"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/Carl_Gustav_recoilless_rifle"
><img src="images/grenades/RCL.jpg" alt="RCL"
/></a>
<p>
The <b>Carl-Gustaf recoilless rifle</b>,
(Swedish pronunciation: [kɑːɭ ˈɡɵ̂sːtav])
designated in Swedish service as the
<b>Granatgevär m/48</b>, (Grg m/48 – "grenade
rifle", model 1948) is an 84-mm man-portable
reusable anti-tank weapon originally produced by
Carl Gustafs Stads Gevärsfaktori (that later was
merged into Saab Bofors Dynamics) in Sweden.
</p>
<a
href="https://en.wikipedia.org/wiki/Carl_Gustav_recoilless_rifle"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>B-300 SHIPON</h3>
<a href="https://en.wikipedia.org/wiki/B-300#Shipon"
><img
src="images/indianArmyEquipmentsPage/B-300 SHIPON.png"
alt="B-300 SHIPON"
/></a>
<div class="equipment-info-right">
<a href="https://en.wikipedia.org/wiki/B-300#Shipon"
><img
src="images/grenades/B-300 SHIPON.jpg"
alt="B-300 SHIPON"
/></a>
<p>
The <b>B-300</b> is a reusable man-portable
anti-tank weapon system developed by Israel
Military Industries in the late 1970s for use by
the Israel Defense Forces. The B-300 can be
carried and operated by a single operator and is
effective to approximately 400 meters (1,312
ft).
</p>
<a
href="https://en.wikipedia.org/wiki/B-300#Shipon"
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">
<h1>TANKS :</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>ARJUN</h3>
<a href="https://en.wikipedia.org/wiki/Arjun_(tank)"
><img
src="images/indianArmyEquipmentsPage/ARJUN.png"
alt="ARJUN"
/></a>
<div class="equipment-info">
<a href="https://en.wikipedia.org/wiki/Arjun_(tank)"
><img src="images/tanks/Arjun.jpg" alt="Arjun"
/></a>
<p>
The <b>Arjun</b> is a third generation main
battle tank developed by the Combat Vehicles
Research and Development Establishment (CVRDE)
of the Defence Research and Development
Organisation (DRDO), for the Indian
Army.[11][12] The tank is named after Arjuna,
the archer prince who is the main protagonist of
the Indian epic poem Mahabharata. Design work
began in 1986 and was finished in 1996. The
Arjun main battle tank entered service with the
Indian Army in 2004. The 43rd Armoured Regiment,
formed in 2009, was the first regiment to
receive the Arjun.
</p>
<a
href="https://en.wikipedia.org/wiki/Arjun_(tank)"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>T-90S BHISHMA/T-90 M</h3>
<a href="https://en.wikipedia.org/wiki/T-90"
><img
src="images/indianArmyEquipmentsPage/T-90 BHISHMA.png"
alt="T-90 BHISHMA"
/></a>
<div class="equipment-info-right">
<a href="https://en.wikipedia.org/wiki/T-90"
><img
src="images/tanks/T-90S BHISHMA.jpg"
alt="T-90S BHISHMA"
/></a>
<p>
The <b>T-90</b> is a third-generation Russian
main battle tank that entered service in 1993.
The tank is a modern variation of the T-72B and
incorporates many features found on the T-80U.
Originally called the T-72BU, but later renamed
to T-90, it is an advanced tank in service with
Russian Ground Forces and the Naval Infantry.
The T-90 uses a 125 mm 2A46 smoothbore main gun,
the 1A45T fire-control system, an upgraded
engine, and gunner's thermal sight. Standard
protective measures include a blend of steel and
composite armour, smoke grenade dischargers,
Kontakt-5 explosive-reactive armour and the
Shtora infrared ATGM jamming system. It was
designed and built by Uralvagonzavod, in Nizhny
Tagil, Russia.
</p>
<a
href="https://en.wikipedia.org/wiki/T-90"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>T-72 Ajeya/Ajeya MK2</h3>
<a
href="https://en.wikipedia.org/wiki/T-72_operators_and_variants#India"
><img
src="images/indianArmyEquipmentsPage/T-72.png"
alt="T-72"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/T-72_operators_and_variants#India"
><img src="images/tanks/T-72.jpg" alt="T-72"
/></a>
<p>
The <b>T-72</b> is a Soviet-designed main battle
tank that entered production in 1971. It
replaced the T-54/55 series as the workhorse of
Soviet tank forces. In front-line Russian
service, T-72s are being upgraded or augmented
by the T-90.
</p>
<a
href="https://en.wikipedia.org/wiki/T-72_operators_and_variants#India"
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>ARTILLERY :</h1>
<div class="equipments-main-container-div">
<div class="individual-equipments">
<h3>SMERCH 9K58 MBRL</h3>
<a href="https://en.wikipedia.org/wiki/BM-30"
><img
src="images/indianArmyEquipmentsPage/SMERCH 9K58 MBRL.png"
alt="SMERCH 9K58 MBRL"
/>
</a>
<div class="equipment-info">
<a href="https://en.wikipedia.org/wiki/BM-30"
><img
src="images/artillery/SMERCH 9K58 MBRL.jpg"
alt="SMERCH 9K58 MBRL"
/></a>
<p>
The <b>BM-30 Smerch</b> (Russian: Смерч,
"tornado", "whirlwind"), <b>9K58 Smerch</b> or
<b>9A52-2 Smerch-M</b> is a Soviet heavy
multiple rocket launcher. The system is intended
to defeat personnel, armored, and soft targets
in concentration areas, artillery batteries,
command posts and ammunition depots. It was
designed in the early 1980s and entered service
in the Soviet Army in 1989. When first observed
by the West in 1983, it received the code MRL
280mm M1983. It continued in use by Russia; a
program to replace it by the 9A52-4 Tornado was
launched in 2018.
</p>
<a
href="https://en.wikipedia.org/wiki/BM-30"
class="wikipedia-link"
title="Know More about the Equipment"
><i class="fab fa-wikipedia-w"></i
></a>
</div>
</div>
<div class="individual-equipments">
<h3>PINAKA MBRL</h3>
<a
href="https://en.wikipedia.org/wiki/Pinaka_multi-barrel_rocket_launcher"
><img
src="images/indianArmyEquipmentsPage/PINAKA MBRL.png"
alt="PINAKA MBRL"
/></a>
<div class="equipment-info-right">
<a
href="https://en.wikipedia.org/wiki/Pinaka_multi-barrel_rocket_launcher"
><img
src="images/artillery/PINAKA MBRL.jpg"
alt="PINAKA MBRL"
/></a>
<p>
<b>Pinaka</b> is a multiple rocket launcher
produced in India and developed by the Defence
Research and Development Organisation (DRDO) for
the Indian Army. The system has a maximum range
of 40 km for Mark-I and 60 km for Mark-I
enhanced version, and can fire a salvo of 12 HE
rockets in 44 seconds. The system is mounted on
a Tatra truck for mobility. Pinaka saw service
during the Kargil War, where it was successful
in neutralising enemy positions on the mountain
tops. It has since been inducted into the Indian
Army in large numbers.
</p>
<a
href="https://en.wikipedia.org/wiki/Pinaka_multi-barrel_rocket_launcher"