-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2771 lines (2731 loc) · 105 KB
/
index.html
File metadata and controls
2771 lines (2731 loc) · 105 KB
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>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1"
/>
<link
rel="shortcut icon"
href="assets/images/dgl-96x96.jpg"
type="image/x-icon"
/>
<meta name="description" content="" />
<title>Dindigul Archery</title>
<link
rel="stylesheet"
href="assets/bootstrap-material-design-font/css/material.css"
/>
<link
rel="stylesheet"
href="assets/web/assets/mobirise-icons/mobirise-icons.css"
/>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-grid.min.css" />
<link
rel="stylesheet"
href="assets/bootstrap/css/bootstrap-reboot.min.css"
/>
<link rel="stylesheet" href="assets/dropdown/css/style.css" />
<link rel="stylesheet" href="assets/animatecss/animate.min.css" />
<link rel="stylesheet" href="assets/tether/tether.min.css" />
<link rel="stylesheet" href="assets/socicon/css/styles.css" />
<link rel="stylesheet" href="assets/formstyler/jquery.formstyler.css" />
<link
rel="stylesheet"
href="assets/formstyler/jquery.formstyler.theme.css"
/>
<link
rel="stylesheet"
href="assets/datepicker/jquery.datetimepicker.min.css"
/>
<link rel="stylesheet" href="assets/gallery/style.css" />
<link rel="stylesheet" href="assets/formoid-css/recaptcha.css" />
<link
rel="preload"
as="style"
href="assets/mobirise/css/mbr-additional.css"
/>
<link
rel="stylesheet"
href="assets/mobirise/css/mbr-additional.css"
type="text/css"
/>
</head>
<body>
<section class="menu cid-rEWGzVAm4L" once="menu" id="menu1-1">
<nav
class="navbar navbar-expand beta-menu navbar-dropdown align-items-center navbar-fixed-top navbar-toggleable-sm"
>
<button
class="navbar-toggler navbar-toggler-right"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</button>
<div class="menu-logo">
<div class="navbar-brand">
<span class="navbar-logo">
<a href="#">
<img
src="assets/images/dgl-96x96.jpg"
alt=""
title=""
style="height: 3.8rem"
/>
</a>
</span>
<span class="navbar-caption-wrap"
><a class="navbar-caption text-black display-5" href="#"
>TAAD</a
></span
>
</div>
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul
class="navbar-nav nav-dropdown nav-right"
data-app-modern-menu="true"
>
<li class="nav-item">
<a class="nav-link link text-black display-4" href="#top"
><span
class="mdi-action-home mbr-iconfont mbr-iconfont-btn"
></span>
Home</a
>
</li>
<li class="nav-item">
<a
class="nav-link link text-black display-4"
href="index.html#content5-16"
><span
class="mdi-social-people mbr-iconfont mbr-iconfont-btn"
></span>
Achievements</a
>
</li>
<li class="nav-item">
<a
class="nav-link link text-black display-4"
href="index.html#content5-d"
><span
class="mdi-social-people mbr-iconfont mbr-iconfont-btn"
></span>
Coaching</a
>
</li>
<li class="nav-item">
<a
class="nav-link link text-black display-4"
href="index.html#content5-8"
><span
class="mdi-device-now-wallpaper mbr-iconfont mbr-iconfont-btn"
></span>
Gallery</a
>
</li>
<li class="nav-item">
<a
class="nav-link link text-black display-4"
href="index.html#content5-o"
><span
class="mdi-communication-email mbr-iconfont mbr-iconfont-btn"
></span>
Contact Us</a
>
</li>
</ul>
</div>
</nav>
</section>
<section class="header1 cid-rR88cM2a5L" id="header16-1r">
<!-- <div class="container">
<div class="row justify-content-md-center">
<div class="col-md-10 align-center">
<h1 class="mbr-section-title mbr-bold pb-3 mbr-fonts-style" mbr-theme-style="display-1" mbr-if="showTitle">
FULL WIDTH INTRO
</h1>
<h3 class="mbr-section-subtitle mbr-light pb-3 mbr-fonts-style" mbr-theme-style="display-2" mbr-if="showSubTitle">
Beautiful mobile websites
</h3>
<p class="mbr-text pb-3 mbr-fonts-style" mbr-theme-style="display-5" mbr-if="showText" data-app-selector=".mbr-text, .mbr-section-btn">
Full width intro with adjustable height, background image and a color overlay. Click any text to edit or style it.
</p>
<div mbr-buttons mbr-theme-style="display-4" class="mbr-section-btn" mbr-if="showButtons" data-toolbar="-mbrBtnMove"><a class="btn btn-md btn-black-outline" href="#" data-app-placeholder="Type Text">LEARN MORE</a>
</div>
</div>
</div>
</div> -->
<div class="flex-container">
<div class="column-container">
<div class="news">
<marquee
height="100%"
behavior="scroll"
direction="up"
vspace="20"
scrollamount="4"
onmouseover="this.stop();"
onmouseout="this.start();"
style="height: 100%; margin-top: 20px; margin-bottom: 20px"
>
<ul>
<li>
<p>
<span class="update">Updates:</span> TAAT 15th State Meet Tentative Schedule General
<a
href="assets/web/assets/TAAT-15th-State-Meet-Tentative-Schedule-General.pdf"
>Click here</a
>
</p>
</li>
<li>
<p>
<span class="update">Updates:</span> TAAT- 15th State Meet Circular
<a
href="assets/web/assets/TAAT-15th-State-Meet-Circular-v1.pdf"
>Click here</a
>
</p>
</li>
<br />
<!--<li>-->
<!-- <p>-->
<!-- <span class="update">Updates:</span> AAI Calender for 2021-->
<!-- <a-->
<!-- href="assets/web/assets/AAI_Calendar_2021.pdf"-->
<!-- >Click here</a-->
<!-- >-->
<!-- </p>-->
<!-- </li>-->
<!-- <br />-->
<!--<li>-->
<!-- <p>-->
<!-- <span class="update">Updates:</span> Selection Trial-->
<!-- Criteria and Procedure for Junior Indian Team For Asia Cup-->
<!-- <a-->
<!-- href="http://www.indianarchery.info/upload/Selection%20Procedure%20-%20Asia%20Cup%20Trial.pdf"-->
<!-- >Click here</a-->
<!-- >-->
<!-- </p>-->
<!--</li>-->
<!--<br />-->
<!--<li>-->
<!-- <p>-->
<!-- <span class="update">Updates:</span> 14th Tamilnadu State Archery Championships-->
<!-- <a-->
<!-- href="http://www.tamilnaduarchery.com/14th-state-meet.php"-->
<!-- >Click here</a-->
<!-- >-->
<!-- </p>-->
<!--</li>-->
<!--<br />-->
<!--<li>-->
<!-- <p>-->
<!-- <span class="update">Updates:</span> Indian Men archers get-->
<!-- Tokyo 2020 Olympic Birth-->
<!-- <a-->
<!-- href="http://www.indianarchery.info/latestnews.aspx?id=1033"-->
<!-- >View more</a-->
<!-- >-->
<!-- </p>-->
<!--</li>-->
</ul>
</marquee>
</div>
</div>
<div class="column-container">
<h1
class="mbr-section-title mbr-semibold mbr-black pb-4 mbr-fonts-style display-2"
>
<strong>THE ARCHERY ASSOCIATION OF DINDIGUL DISTRICT</strong>
</h1>
<img src="assets/images/pic2-960x720.jpg" alt="" title="" />
</div>
<div class="column-container">
<div class="other-associations">
<a
href="https://worldarchery.org/"
target="_blank"
title="World Archery"
>
<img
src="assets/images/picture-1-edited-492x492.png"
alt="World Archery"
title=""
/>
<span class="img-description"><span>See More</span></span>
</a>
<a
href="http://www.indianarchery.info/"
target="_blank"
title="Archery Association of India"
>
<img
src="assets/images/picture-2-edited-492x492.png"
alt="Archery Association of India"
title=""
/>
<span class="img-description"><span>See More</span></span>
</a>
<a
href="https://www.olympic.ind.in/"
target="_blank"
title="Indian Olympic Association"
>
<img
src="assets/images/picture-3-edited-492x492.png"
alt="Indian Olympic Association"
title=""
/>
<span class="img-description"><span>See More</span></span>
</a>
<a
href="http://www.tamilnaduarchery.com/"
target="_blank"
title="Tamilnadu Archery"
>
<img
src="assets/images/picture-4-edited-492x492.png"
alt="Tamilnadu Archery"
title=""
/>
<span class="img-description"><span>See More</span></span>
</a>
</div>
</div>
</div>
</section>
<section class="mbr-section content4 cid-rMMYB5gLI4" id="content4-s">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2 class="align-center pb-3 mbr-fonts-style display-5">
Development of Archery as a sport
</h2>
</div>
</div>
</div>
</section>
<section
class="mbr-section article content9 cid-rMMYzqcIVe"
id="content9-r"
>
<div class="container">
<div class="inner-container" style="width: 100%">
<hr class="line" style="width: 12%" />
<div class="section-text align-center mbr-fonts-style display-7">
Archery as a sport was first introduced in 1900 at paris Olympics,
was contested again in 1904, 1908 and 1920, then again, after an
absence of 52 year it resumed in 1972 at munich. Archery is the
first sport to be introduced for both men and women. In India 1 st
Archery national was organized by AAI ( Archery Association of
India) at new delhi in 1973. In the year 2012 , organized by the HU
archery mission & TAAT ( The Archery Association of Tamilnadu)
Tamilnadu one of the southern state hosted the first archery
nationals among Southern states.
</div>
<hr class="line" style="width: 12%" />
</div>
</div>
</section>
<section class="mbr-section content4 cid-rMMZltaLaV" id="content4-t">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2 class="align-center pb-3 mbr-fonts-style display-5">
Development of archery in Tamilnadu
</h2>
</div>
</div>
</div>
</section>
<section
class="mbr-section article content9 cid-rMMZwA4EP7"
id="content9-v"
>
<div class="container">
<div class="inner-container" style="width: 100%">
<hr class="line" style="width: 12%" />
<div class="section-text align-center mbr-fonts-style display-7">
Mr Shihan Hussaini ( younger son of prof SAQ hussaini a noted
Historian, author & martial artist <span
style="font-size: 1rem"
>from Madurai , Tamilnadu ) plays a vital role in development of
archery as a sport in Tamilnadu. He is </span
><span style="font-size: 1rem"
>Tamilnadu’s Ever & only level 3 coach certified by WA(World
Archery) and has introduced Recurve & </span
><span style="font-size: 1rem"
>compound bow in Tamilnadu. In 1977 Shihan Hussaini
started </span
><span style="font-size: 1rem"
>1 st ever formal Target archery classes at Madurai in Tamilnadu,
Shihan Hussaini had travelled various </span
><span style="font-size: 1rem"
>parts of World to improvise the art of archery. Quick archery
center in London, Mr bill from Singapore </span
><span style="font-size: 1rem"
>are some among them. In 1993 Shihain Hussaini started Hu Archery
mission .In 1998 TAAT( The Archery </span
><span style="font-size: 1rem"
>Association of Tamilnadu) was officially registered as a society
under Shihan Hussaini as founder & </span
><span style="font-size: 1rem"
>general secretary and Chandrasekaran as president. TAAT ( The
Archery Association of Tamilnadu) got </span
><span style="font-size: 1rem"
>recognition by Tamilnadu Olympic Association (TNOA) in 2007. AAI
(Archery Association of India) gave </span
><span style="font-size: 1rem"
>TAAT provisional affiliation in 2010 &amp; confirmed it in
2012. TAAT has 32 districts association registered</span
>
<div><div>under its wing.</div></div>
</div>
<hr class="line" style="width: 12%" />
</div>
</div>
</section>
<section class="mbr-section content5 cid-rEX1QQ2485" id="content5-b">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-12">
<h2
class="align-center mbr-bold mbr-white pb-3 mbr-fonts-style display-2"
>
ABOUT THE ARCHERY ASSOCIATION OF DINDIGUL DISTRICT
</h2>
</div>
</div>
</div>
</section>
<section
class="mbr-section article content9 cid-rEX2g6RaX8"
id="content9-c"
>
<div class="container">
<div class="inner-container" style="width: 100%">
<hr class="line" style="width: 25%" />
<div class="section-text align-center mbr-fonts-style display-7">
<p>
Inaugurated in year 2009. THE ARCHERY ASSOCIATION OF DINDIGUL
DISTRICT-TAAD, is affiliated to the archery association of
Tamilnadu-TAAT,Tamilnadu state Olympic association-TNOA , sports
development Authority of Tamilnadu-SDAT.
</p>
<p>
The officer bearers of TAAD are
<strong>P. Jothimurugan</strong> (President), <strong
>P. Seetharaman </strong
>(Secretary &amp; coach), <strong
>R. Madurai veeran</strong
>
(Treasurer ), <strong>Swamynathan</strong> (Senior vice
president) , Vice presidents:
<strong>K.B. Saravanan</strong
>, <strong>Rajeshkannan</strong>. E c members: Mr. Vignesh,
Mr. Manimaran, Mr. Vivek, Mr. Veera kumar, Mr.
Rajiv Gandhi.
</p>
<div><br /></div>
<div>
Mr p.seetharaman secretary of TAAD is coaching the Archers of
Dindigul District. He had completed <span
style="font-size: 1rem"
>Level one coaching training from TAAT. He had received awards
including, District level best physical </span
><span style="font-size: 1rem"
>education teacher ,Dhuronacharya Awards (Maignana sabai) , Best
Secretary Award .</span
>
</div>
<div><br /></div>
<div>
Archers under his training had achieved success at various levels.
</div><br/>
<div>
THE GOAL OF TAAD IS TO REPRESENT AND ACHIEVE FOR INDIA IN INTERNATIONAL EVENTS.
</div>
<p></p>
</div>
<hr class="line" style="width: 25%" />
</div>
</div>
</section>
<section class="mbr-section content5 cid-rMSRxyKQcB" id="content5-16">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2
class="align-center mbr-bold mbr-white pb-3 mbr-fonts-style display-2"
>
ACHIEVEMENTS
</h2>
</div>
</div>
</div>
</section>
<section class="timeline1 cid-rMN2ZuIdUo" id="timeline1-10">
<div class="container align-center">
<div
class="container timelines-container reverseTimeline"
mbri-timelines=""
>
<!--1-->
<div class="row timeline-element reverse">
<div class="timeline-date-panel col-xs-12 col-md-6 align-left">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2011</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-right">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
2 archers ( Vasanth & Sabari ) selected for national
</h4>
</div>
</div>
</div>
<!--2-->
<div class="row timeline-element separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-right">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2012</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-left">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
State gold (Sabari) national participation (both Indian &
recurve)
</h4>
</div>
</div>
</div>
<!--3-->
<div class="row timeline-element reverse separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-left">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2013</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-right">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
4 Members selected for National
</h4>
</div>
</div>
</div>
<!--4-->
<div class="row timeline-element separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-right">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2014</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-left">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
R. Anburaj State gold medal ( sub-junior & junior
level), Niraj state gold medal (mini sub junior level),<br /><br />
Asher State silver medal( mini sub junior level) Participated
national championship
</h4>
</div>
</div>
</div>
<!--5-->
<div class="row timeline-element reverse separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-left">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2015</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-right">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
A. Niraj state gold medal (mini sub junior level) participated
national championship
<div><br /></div>
<div>
Anburaj state silvermedal (junior level) participated
national championship.
</div>
<div><br /></div>
<div>S.Gopinath state bronze medal(intuitive)</div>
</h4>
</div>
</div>
</div>
<!--6-->
<div class="row timeline-element separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-right">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2016</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-left">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
A. Niraj state silver medal (mini sub junior level)
participated in national championship
</h4>
</div>
</div>
</div>
<!--7-->
<div class="row timeline-element reverse separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-left">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2018</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-right">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
M. Hanush bronze medal ,Kiran surya kumar state fourth place,
Niraj selected for national championship
</h4>
</div>
</div>
</div>
<!--8-->
<div class="row timeline-element separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-right">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2019</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-left">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
S. Kanishkha state bronze medal(intuitive)
<div><br /></div>
<div>
<br/><b>STATE CHAMPIONSHIP</b><br/><br/>
  M. Hanush : Mini subjunior Indian Bronze medal<br/>
<br/><br/><b>SGFI GAMES</b><br/><br/>
  K. Bharathi : STATE 2 PLACE ( PARTICIPATED NATIONAL LEVEL IN SGFI GAMES)<br/><br/>
  K. Purnima : STATE 3RD PLACE ( PARTICIPATED NATIONAL LEVEL SGFI GAMES)<br/><br/>
<br/><b>NATIONAL CHAMPIONSHIP</b><br/><br/>
  M.Hanush : Participated in Mini subjunior National Championship , Andrapradesh<br/><br/>
  S. Gopinath : Sub Junior National championship RAIPUR, CHHATTISGARH<br/><br/>
</div>
</h4>
</div>
</div>
</div>
<!--9-->
<div class="row timeline-element reverse separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-left">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2020</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-right">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
<div>
<b>STATE CHAMPIONSHIP</b><br/><br/>
<p>VENEUE: MGR JANAKI ARTS AND SCIENCE COLLEGE, ADAYAR.</p><br/><br/>
<p>Junior team event (men) Gold medal</p><br/>
 R.Rohitt dharshan<br/>
 V.K. Vijay<br/>
 M. Harish<br/>
<br/><p>Sub junior team event (men) Silver medal</p><br/>
 S. Gopinath<br/>
 N. Vishal<br/>
 M. Hanush<br/>
<br/><p>Sub junior team event (women) Silver medal</p>
 K. Purnima<br/>
</div>
</h4>
</div>
</div>
</div>
<!--10-->
<div class="row timeline-element separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-right">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2021</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-left">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
<div>
<b>STATE CHAMPIONSHIP</b><br/><br/>
<p>VENEUE: MGR JANAKI ARTS AND SCIENCE COLLEGE, ADAYAR.</p><br/><br/>
<p>Junior team event (men) Bronze medal</p><br/>
 R.Rohitt dharshan<br/>
 V.K. Vijay<br/>
 S. Danushkandan<br/>
<br/><p>Sub junior mixed team event (men) Silver medal</p><br/>
 S. Gopinath<br/>
<br/><p>Senior team event (Women) Silver medal</p><br/>
 P. Rajeswari<br/>
 Rithanya<br/>
 Nihithaa<br/>
</div>
</h4>
</div>
</div>
</div>
<!--11-->
<div class="row timeline-element reverse separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-left">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2022</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-right">
<div class="timeline-text-content">
<h4 class="mbr-timeline-title mbr-fonts-style display-7">
<div>
<b>STATE CHAMPIONSHIP</b><br/><br/>
<p>VENEUE: MGR JANAKI ARTS AND SCIENCE COLLEGE, ADAYAR.</p><br/><br/>
<p>Recurve Junior team event (Men) Bronze medal</p><br/>
 S. Gopinath<br/>
 V.K. Vijay<br/>
 M. Harish<br/>
<br/><p>Indian Senior mixed team event – Silver medal</p><br/>
 S. Gopinath<br/>
 P. Rajeswari<br/>
<br/><p>Sub junior team event (women) Silver medal</p><br/>
 K. Purnima<br/>
</div>
<div>
<br/><br/><b>NATIONAL CHAMPIONSHIP</b><br/><br/>
<p> S.Danushkandan : Participated All India University National Championship , Chandigarh</p>
<br/><p> R.Rohitt Dharsan : Participated National championship , Jammu</p>
</div>
</h4>
</div>
</div>
</div>
<!--12-->
<div class="row timeline-element separline">
<div class="timeline-date-panel col-xs-12 col-md-6 align-right">
<div class="time-line-date-content">
<p class="mbr-timeline-date mbr-fonts-style display-5">2023</p>
</div>
</div>
<span class="iconBackground"></span>
<div class="col-xs-12 col-md-6 align-left">
<div class="timeline-text-content">
<div>
<b>NATIONAL CHAMPIONSHIP</b><br/><br/>
<p>Ragavi : participated in Under 9 Indian bow girl</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="mbr-section content5 cid-rEX2r5oGEJ" id="content5-d">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2
class="align-center mbr-bold mbr-white pb-3 mbr-fonts-style display-2"
>
COACHING
</h2>
</div>
</div>
</div>
</section>
<section
class="mbr-section article content1 cid-rMN9twn9Xf"
id="content1-12"
>
<div class="container">
<div class="media-container-row">
<div class="mbr-text col-12 mbr-fonts-style display-7 col-md-12">
<p><strong>The OATH</strong></p>
<p>
Before under going the training one should be thankful to have
this opportunity to God, parents <span
style="font-size: 1rem"
>& Guru. The Archery Association of Dindigul Respects
&amp; follows the Oaths of Mr Shihan </span
><span style="font-size: 1rem">Hussaini.</span>
</p>
<p>
<strong><br /></strong>
</p>
<p><strong>Personal Oath</strong><br /></p>
<p>
<span style="font-size: 1rem"
>“ I promise to myself this personal oath</span
>
</p>
<p>
<span style="font-size: 1rem"
>Absolute love for & foremost duty to my parents &
family,</span
>
</p>
<p>
<span style="font-size: 1rem"
>Greatest respect for, complete trust in & eternal gratitude
to my guru,</span
>
</p>
<p>
<span style="font-size: 1rem"
>Devotional to & blind faith in the supreme,</span
>
</p>
<p>
<span style="font-size: 1rem"
>Total commitment & pure loyalty to my partner,</span
>
</p>
<p>
<span style="font-size: 1rem"
>Out of the way help to my friends in need, the old &
sick,</span
>
</p>
<p>
<span style="font-size: 1rem"
>True compassion & genuine concern for humanity & all
forms of life,</span
>
</p>
<p>
<span style="font-size: 1rem"
>Promotion of world peace & religious harmony,</span
>
</p>
<p><span style="font-size: 1rem">Zealous Patriotism,</span></p>
<p>
<span style="font-size: 1rem"
>Diligent abidance of my country’s constitution, Law & order
& Zero tolerance to </span
><span style="font-size: 1rem"
>corruption, My active participation in social reform, Positive
change &amp; empowerment of the </span
><span style="font-size: 1rem"
>weak, Saving life as my ultimate priority, donating blood,
organ, time & energy towards this, </span
><span style="font-size: 1rem"
>Care for my amazing body with the right food, daily exercise
& sufficient rest,Positivity in </span
><span style="font-size: 1rem"
>every breath I take, Optimism in every heart beat of mine,
goodness in Every thought I </span
><span style="font-size: 1rem"
>generate & righteousness in every act I do, Happiness
universal, Humanity unequalled, Humility </span
><span style="font-size: 1rem"
>unparalleled, I’ll be true to my conscience listen to my inner
voice, always be happy & radiate </span
><span style="font-size: 1rem">happiness unto Eternity! “</span>
</p>
<p>
<span style="font-size: 1rem"><br /></span>
</p>
<p>
<span style="font-size: 1rem"
><strong>Oath of the coach</strong></span
>
</p>
<p>
<span style="font-size: 1rem"
>“ I Thank you for putting your trust in me & accepting me
as your mind coach & guru for life. </span
><span style="font-size: 1rem"
>I shall strive to be an ideal & inspiring role model &
continuously motivate you by example of </span
><span style="font-size: 1rem"
>my own thoughts, words & action. I will push you to
identify your strengths & weakness & </span
><span style="font-size: 1rem"
>transform all your negatives in to positives & bring out
the best in you. I will constantly care for </span
><span style="font-size: 1rem"
>you & your well being, provoke you to dream big, aim higher
& reach every target that you </span
><span style="font-size: 1rem"
>would set your mind’s arrow to. I will be strict in maintaining
discipline , forgiving with </span
><span style="font-size: 1rem"
>unintentional mistakes, impartial in my attention, selfless in
my motives, generous in my </span
><span style="font-size: 1rem"
>appreciation, constructive in my criticism & humane in
correctional punishments. I believe that </span
><span style="font-size: 1rem"
>updating my knowledge is as important as remembering what I
have learnt & so will continue </span
><span style="font-size: 1rem"
>to learn new developments & practice my old skills
diligently. I Will put your interests before </span
><span style="font-size: 1rem"
>mine, promote your welfare with all my might, aspire the best
for you, protect you with my life </span
><span style="font-size: 1rem"
>& ceaselessly work to make you the best in the world”</span
>
</p>
<p><br /></p>
<p><strong>Training Oath</strong></p>
<p>
<span style="font-size: 1rem"
>“ I exist to be the number one Archer in the world
! </span
><span style="font-size: 1rem"
>I can, I will, I must win a gold medal in the next
Olympics/world championships, </span
><span style="font-size: 1rem"
>I owe this to my flag, my country, my people, my parents, my
guru & my god, </span
><span style="font-size: 1rem"
>I’ll work harder than the hardest, endure pain & injury…
sacrifice all pleasures, </span
><span style="font-size: 1rem"
>I’ll hit the ground earlier than the earliest, leave later than
the last, focus in </span
><span style="font-size: 1rem"
>nothing but my shooting & push every limit of mine !”</span
>
</p>
<p>
<span style="font-size: 1rem"><br /></span>
</p>
<p>
<span style="font-size: 1rem"
><strong>Shooting line Oath</strong></span
>
</p>
<p>
<span style="font-size: 1rem"
>“<em> When at the shooting line…….</em></span
>
</p>
<p>
<span style="font-size: 1rem"
>I will completely disconnect with my exteriors & seamlessly
connect with my interiors.</span
>
</p>
<p>
<span style="font-size: 1rem"
><em>When at the shooting line…….</em></span
>
</p>
<p>
<span style="font-size: 1rem"
>I’ll always be super consciously aware of perfection in form,
flawlessness in technique </span
><span style="font-size: 1rem">And totality in focus.</span>
</p>
<p>
<span style="font-size: 1rem"
><em>When at the shooting line…….</em></span
>
</p>
<p>
<span style="font-size: 1rem"
>My greatest strength will be the power of my
patience, </span
><span style="font-size: 1rem"
>Unwavering positivity despite a bad shot! A pathetic
end!, </span
><span style="font-size: 1rem"
>A horrible set & dismal shooting.</span
>
</p>
<p>
<span style="font-size: 1rem"
><em>When at the shooting line…….</em></span
>
</p>
<p>
<span style="font-size: 1rem"
>I will get locked into an imaginary cage of mental
concentration, never ever get distracted </span
><span style="font-size: 1rem"
>By thoughts, sights, sounds, people, happenings & my
competitor.</span