-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
984 lines (924 loc) · 36.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
<!DOCTYPE html>
<html lang="en">
<head>
<title>
RIMS : Rajendra Institute of Medical Sciences, Ranchi Jharkhand India
</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="shortcut icon"
href="Images/Favicon/favicon.png"
type="image/x-icon"
/>
<!-- Font Awosome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha384-D9c5a5Hp5nk6GRQpwE47Gz6C1i6lKw89RBcH7V1eB9frf7KCCbT8HQto7YFLItrj"
crossorigin="anonymous"
/>
<!-- Fonts -->
<link
rel="stylesheet"
id="Roboto-css"
href="http://fonts.googleapis.com/css?family=Roboto"
type="text/css"
media="all"
/>
<!-- Css -->
<link rel="stylesheet" href="style.css" />
<!-- Bootstrap CSS v5.2.1 -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
</head>
<body>
<main class="container bg-white mt-4 pt-5 ps-4 pe-4 pb-5 brd">
<!-- Header -->
<header class="mb-4">
<div class="row">
<div class="col-lg-7 col-md-6 d-flex flex-row">
<div>
<img src="Images/logo.png" alt="" style="width: 79%" />
</div>
<div>
<h2 class="text-red">राजेन्द्र आयुर्विज्ञान संस्थान, रांची</h2>
<h5>Rajendra Institute of Medical Sciences</h5>
<h5 class="text-shadow">
An Autonomous Institute under the Govt. of Jharkhand Ranchi,
Jharkhand
</h5>
</div>
</div>
<div class="col-lg-5 col-md-6 d-flex flex-column">
<ul class="list-none d-flex flex-row justify-content-end">
<li
id="login"
class="user"
data-bs-toggle="modal"
data-bs-target="#loginModal"
>
<a href="#" class="ps-2 pe-4 fw-bold text-decoration-none">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
fill="currentColor"
d="M12 19.2c-2.5 0-4.71-1.28-6-3.2c.03-2 4-3.1 6-3.1s5.97 1.1 6 3.1a7.232 7.232 0 0 1-6 3.2M12 5a3 3 0 0 1 3 3a3 3 0 0 1-3 3a3 3 0 0 1-3-3a3 3 0 0 1 3-3m0-3A10 10 0 0 0 2 12a10 10 0 0 0 10 10a10 10 0 0 0 10-10c0-5.53-4.5-10-10-10Z"
/>
</svg>
Log in</a
>
</li>
<li>
<a href="#" class="ps-4 pe-4 fw-bold text-decoration-none"
>Home</a
>
</li>
<li>
<a href="#" class="ps-2 pe-4 fw-bold text-decoration-none"
>Contact us</a
>
</li>
<li>
<a href="#" class="text-decoration-none"
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 1024 1024"
>
<path
fill="currentColor"
d="M928 254.3c-30.6 13.2-63.9 22.7-98.2 26.4a170.1 170.1 0 0 0 75-94a336.64 336.64 0 0 1-108.2 41.2A170.1 170.1 0 0 0 672 174c-94.5 0-170.5 76.6-170.5 170.6c0 13.2 1.6 26.4 4.2 39.1c-141.5-7.4-267.7-75-351.6-178.5a169.32 169.32 0 0 0-23.2 86.1c0 59.2 30.1 111.4 76 142.1a172 172 0 0 1-77.1-21.7v2.1c0 82.9 58.6 151.6 136.7 167.4a180.6 180.6 0 0 1-44.9 5.8c-11.1 0-21.6-1.1-32.2-2.6C211 652 273.9 701.1 348.8 702.7c-58.6 45.9-132 72.9-211.7 72.9c-14.3 0-27.5-.5-41.2-2.1C171.5 822 261.2 850 357.8 850C671.4 850 843 590.2 843 364.7c0-7.4 0-14.8-.5-22.2c33.2-24.3 62.3-54.4 85.5-88.2z"
/>
</svg>
</a>
</li>
</ul>
<form action="#">
<div>
<input
type="text"
class="form-control w-75"
placeholder="Search Doctor"
/>
</div>
</form>
</div>
</div>
</header>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-sm navbar-light bg-light">
<div class="container">
<button
class="nav-tog d-lg-none"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapsibleNavId"
aria-controls="collapsibleNavId"
aria-expanded="false"
aria-label="Toggle navigation"
>
<svg
class="nav-togclick"
xmlns="http://www.w3.org/2000/svg"
width="34"
height="34"
viewBox="0 0 24 24"
>
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-width="1.5"
d="M4 7h3m13 0h-9m9 10h-3M4 17h9m-9-5h16"
/>
</svg>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavId">
<ul class="navbar-nav me-auto mt-2 mt-lg-0">
<li class="hov nav-item dropdown">
<a
class="nav-link f-bold text-dark dropdown-toggle fcus"
href="#"
id="aboutUsDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
About Us
</a>
<ul
class="dropdown-menu border-0"
aria-labelledby="aboutUsDropdown"
>
<li>
<a class="dropdown-item" href="#"
>From the Director's Desk</a
>
</li>
<li><a class="dropdown-item" href="#">RIMS</a></li>
<li>
<a class="dropdown-item" href="#">Vision & Mission</a>
</li>
<li><a class="dropdown-item" href="#">RIMS Gaan</a></li>
<li><a class="dropdown-item" href="#">Administration</a></li>
<li>
<a class="dropdown-item" href="#"
>University Vice-Chancellor</a
>
</li>
<li><a class="dropdown-item" href="#">RTI</a></li>
<li>
<a class="dropdown-item" href="#">Rules & Regulations</a>
</li>
<li>
<a class="dropdown-item" href="#">IC - Sexual Harassment</a>
</li>
<li><a class="dropdown-item" href="#">Achievements</a></li>
<li>
<a class="dropdown-item" href="#">Ongoing Projects</a>
</li>
<li><a class="dropdown-item" href="#">Citizen Charter</a></li>
<li><a class="dropdown-item" href="#">Location</a></li>
</ul>
</li>
<li class="hov nav-item dropdown">
<a
class="nav-link f-bold text-dark dropdown-toggle"
href="#"
id="aboutUsDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Academics
</a>
<ul
class="dropdown-menu border-0"
aria-labelledby="aboutUsDropdown"
>
<li><a class="dropdown-item" href="#">Infrastructure</a></li>
<li>
<a class="dropdown-item" href="#"> Socities & Club</a>
</li>
<li><a class="dropdown-item" href="#">Library</a></li>
<li><a class="dropdown-item" href="#">Student Info</a></li>
<li><a class="dropdown-item" href="#">IEC SOP</a></li>
</ul>
</li>
<li class="hov nav-item">
<a class="nav-link f-bold text-dark" href="#">Departments</a>
</li>
<li class="hov nav-item">
<a class="nav-link f-bold text-dark" href="#">Specialities</a>
</li>
<li class="hov nav-item dropdown">
<a
class="nav-link f-bold text-dark dropdown-toggle"
href="#"
id="aboutUsDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Patient
</a>
<ul
class="dropdown-menu border-0"
aria-labelledby="aboutUsDropdown"
>
<li>
<a class="dropdown-item" href="#">Daily OPD Schedule </a>
</li>
<li>
<a class="dropdown-item" href="#">
Super Speciality Clinic Schedule</a
>
</li>
<li>
<a class="dropdown-item" href="#"
>Online Registration System
</a>
</li>
<li><a class="dropdown-item" href="#">HIMS</a></li>
<li><a class="dropdown-item" href="#">Health Programs</a></li>
</ul>
</li>
<li class="hov nav-item dropdown">
<a
class="nav-link f-bold text-dark dropdown-toggle"
href="#"
id="aboutUsDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Facilities & Services
</a>
<ul
class="dropdown-menu border-0"
aria-labelledby="aboutUsDropdown"
>
<li><a class="dropdown-item" href="#">OPD </a></li>
<li>
<a class="dropdown-item" href="#">Body Donation Form </a>
</li>
<li><a class="dropdown-item" href="#">Medicine Centre</a></li>
<li>
<a class="dropdown-item" href="#">Dept. of Telemedicine</a>
</li>
<li><a class="dropdown-item" href="#">Lab & Centre </a></li>
<li>
<a class="dropdown-item" href="#">Wards & Shelters </a>
</li>
<li>
<a class="dropdown-item" href="#">Dept. of Dietetics </a>
</li>
<li>
<a class="dropdown-item" href="#">Safety & Security </a>
</li>
<li>
<a class="dropdown-item" href="#"
>Birth & Death Registration
</a>
</li>
<li><a class="dropdown-item" href="#">Mortuary </a></li>
<li>
<a class="dropdown-item" href="#">Emergency Services </a>
</li>
<li><a class="dropdown-item" href="#">Bank </a></li>
</ul>
</li>
<li class="hov nav-item dropdown">
<a
class="nav-link f-bold text-dark dropdown-toggle"
href="#"
id="aboutUsDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Info Desk
</a>
<ul
class="dropdown-menu border-0"
aria-labelledby="aboutUsDropdown"
>
<li><a class="dropdown-item" href="#">Tenders </a></li>
<li><a class="dropdown-item" href="#">Recruitments </a></li>
<li><a class="dropdown-item" href="#">Admission</a></li>
<li><a class="dropdown-item" href="#">PIO</a></li>
<li><a class="dropdown-item" href="#">NIRF </a></li>
</ul>
</li>
<li class="hov nav-item dropdown">
<a
class="nav-link f-bold text-dark dropdown-toggle"
href="#"
id="aboutUsDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Media
</a>
<ul
class="dropdown-menu border-0"
aria-labelledby="aboutUsDropdown"
>
<li><a class="dropdown-item" href="#">Gallery </a></li>
<li><a class="dropdown-item" href="#">In-Press </a></li>
<li><a class="dropdown-item" href="#">Videos</a></li>
<li>
<a class="dropdown-item" href="#">Conferences & Seminars</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Carousel -->
<section class="Carousel mt-5 mb-5">
<div
id="carouselExampleIndicators"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="Images/Slider/sl21.jpg"
class="d-block w-100"
alt="..."
/>
</div>
<div class="carousel-item">
<img
src="Images/Slider/sl25.jpg"
class="d-block w-100"
alt="..."
/>
</div>
<div class="carousel-item">
<img
src="Images/Slider/sl23.jpg"
class="d-block w-100"
alt="..."
/>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
<!-- Roster -->
<div class="container mt-5 mb-5">
<div class="row">
<div class="col-lg-4 col-md-12 col-sm-12 mt-3 modified-flex">
<!-- Column 1 content -->
<div>
<h6><a href="">O. P. D. DOCTOR'S DUTY ROSTER</a></h6>
<h6 class="RIMS-TELEPHONIC mt-2">RIMS TELEPHONIC e-OPD.......</h6>
<p>
<br />
<strong>Tollfree No :</strong
><a href="tel:+911800-345-7056">1800-345-7056</a> <br /><strong>
Mobile Nos :</strong
>
<a href="tel:+9194317-63648">94317-63648</a> |
<a href="tel:+9194315-34107">94315-34107 </a> <br /><strong
>Days :</strong
>
Monday to Saturday (except Holidays) <br /><strong
>Time :</strong
>
10.00 am to 12.00 pm
</p>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12 mt-3 modified-flex">
<!-- Column 2 content -->
<div class="card" style="width: 18rem">
<img
src="Images/Card Images/amarnath_yatra_2023_rims.jpg"
class="card-img-top"
alt="Image"
/>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12 mt-3 modified-flex">
<!-- Column 3 content -->
<div>
<div class="card mb-4" style="width: 18rem">
<img
src="Images/Card Images/mrt_2023_bnr.jpg"
class="card-img-top"
alt="Image"
/>
</div>
<a class="text-decoration-none mb-2 bt" href="">Details Info </a>
<a class="text-decoration-none mb-2 bt" href=""
>Circular (Second Batch)
</a>
</div>
</div>
</div>
</div>
<!-- Card disks -->
<div class="row pt-4">
<div class="col-lg-3 col-md-6 col-sm-12 mb-4 modified-flex">
<a href="#" class="rel-olay">
<img
src="Images/Card Images/call_nos_bnr.jpg"
class="img-fluid rounded"
alt="Image"
/>
<div class="olay"></div>
</a>
</div>
<div class="col-lg-3 col-md-5 col-sm-12 mb-4 modified-flex">
<a href="#" class="rel-olay">
<img
src="Images/Card Images/amns_desc.jpg"
class="img-fluid rounded"
alt="Image"
/>
<div class="olay"></div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 mb-4 modified-flex">
<a href="#" class="rel-olay">
<img
src="Images/Card Images/dent_img.jpg"
class="img-fluid rounded"
alt="Image"
/>
<div class="olay"></div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 mb-4 modified-flex">
<a href="#" class="rel-olay">
<img
src="Images/Card Images/orgn_dntn.jpg"
class="img-fluid rounded"
alt="Image"
/>
<div class="olay"></div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 mb-4 modified-flex">
<a href="#" class="rel-olay">
<img
src="Images/Card Images/abc.jpg"
class="img-fluid rounded"
alt="Image"
/>
<div class="olay"></div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 mb-4 modified-flex">
<a href="#" class="rel-olay">
<img
src="Images/Card Images/bnr_bdy_dntn copy.jpg"
class="img-fluid rounded"
alt="Image"
/>
<div class="olay"></div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 mb-4 modified-flex">
<a href="#" class="rel-olay">
<img src="Images/Card Images/ragg.jpg" class="img-fluid rounded" alt="Image" />
<div class="olay"></div>
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 mb-4 modified-flex">
<a href="# " class="rel-olay">
<img
src="Images/Card Images/harascopy.jpg"
class="img-fluid rounded"
alt="Image"
/>
<div class="olay"></div>
</a>
</div>
</div>
<!-- Card pallets -->
<div
class="mt-5 d-flex align-items-center justify-content-between flex-wrap"
>
<div class="card-main d-flex align-items-center justify-content-center">
<h6>Exams & Results</h6>
<div class="hiden"></div>
</div>
<div class="card-main d-flex align-items-center justify-content-center">
<h6>Multidisciplinary Research Unit (MRU)</h6>
<div class="hiden"></div>
</div>
<div class="card-main d-flex align-items-center justify-content-center">
<h6>Doctors</h6>
<div class="hiden"></div>
</div>
<div class="card-main d-flex align-items-center justify-content-center">
<h6>National & State Health Programmes</h6>
<div class="hiden"></div>
</div>
<div class="card-main d-flex align-items-center justify-content-center">
<h6>Annual Hospital Statistical Report</h6>
<div class="hiden"></div>
</div>
<div class="card-main d-flex align-items-center justify-content-center">
<h6>Right to Information Act</h6>
<div class="hiden"></div>
</div>
</div>
<!-- Lists and links -->
<div class="row d-flex align-items-start justify-content-start">
<div class="col-lg-4 pt-5">
<p class="linkp">
<span class="box h6"> Rims info desk </span>
</p>
<ul>
<li class="mt-2">
<a class="td" href="">
List of candidates passed in the Ph. D Entrance Test - 2022-23
Examination held in the month of Feb. 2023, RIMS, Ranchi
</a>
<a href="" class="modified-badge">New</a>
</li>
<li class="mt-2">
<a class="td" href="">
Office Order - List of selected candidates and details for Short
term fellowship program in Good Clinical Practice, RIMS Ranchi,
Memo No. 1571A, Dtd: 10-04-23</a
>
</li>
<li class="mt-2">
<a class="td" href="">
Circular - Training for Medical Record Technician (MRT) for the
Session 1st July to 31st December 2023</a
><a href="" class="modified-badge">New</a>
</li>
<li class="mt-2">
<a class="td" href=""> Biomedical Waste Report 2022</a
><a href="" class="modified-badge">New</a>
</li>
<li class="mt-2">
<a class="td" href=""
>Income Tax Schedule Format, Assessment Year : 2023-24, FY :
2022-23</a
>
</li>
<li class="mt-2">
<a class="td" href=""
>SOP for Institutional Ethics Committee, RIMS, Ranchi, Version
5.0, Dated-21-02-2022
</a>
</li>
<div class="d-flex justify-content-end mt-4">
<span><a href="">View More...</a></span>
</div>
</ul>
</div>
<div class="col-lg-4 pt-5">
<p class="linkp">
<span class="box h6"> Tenders </span>
</p>
<ul>
<li class="mt-2 mb-2">
Sealed Quotation are invited from Registered Suppliers for supply
of different surgical items at CTVS Department, RIMS Ranchi,
Quotation No 322B Dated 02/05/2023 (Ayushman Bharat -
Pradhanmantri Jan Aarogya Yojna)
<a href="" class="modified-badge">New</a>
<div class="d-flex justify-content-end"> <button class="modified-btn">Downlaod</button></div>
</li>
<li class="mt-2">
Sealed Quotation are invited from Registered Suppliers for supply
of different surgical items at CTVS Department, RIMS Ranchi,
Quotation No 322B Dated 02/05/2023 (Ayushman Bharat -
Pradhanmantri Jan Aarogya Yojna)
<a href="" class="modified-badge">New</a>
<div>
<div class="d-flex justify-content-end"> <button class="modified-btn">Downlaod</button></div>
</div>
</li>
<li class="mt-2">
Sealed Quotation are invited from Registered Suppliers for supply
of different surgical items at CTVS Department, RIMS Ranchi,
Quotation No 322B Dated 02/05/2023 (Ayushman Bharat -
Pradhanmantri Jan Aarogya Yojna)
<a href="" class="modified-badge">New</a>
<div>
<div class="d-flex justify-content-end"> <button class="modified-btn">Downlaod</button></div>
</div>
</li>
</ul>
<div>
<div class="d-flex justify-content-end">
<span><a href="">View More...</a></span>
</div>
</div>
</div>
<div class="col-lg-4 pt-5">
<p class="linkp">
<span class="box h6"> Recruitments </span>
</p>
<ul>
<li class="mt-2">
<a class="td" href=""
>Walk-in Interview Result for the post of Infection Control
Nurse (NCDC/HAI/AMR) <a href="" class="modified-badge">New</a>
</a>
</li>
<li class="mt-2">
<a class="td" href=""
>Walk-in Interview Result for the post of Field Worker
(NCDC/NVHSP) <a href="" class="modified-badge">New</a>
</a>
</li>
<li class="mt-2">
<a class="td" href=""
>Walk in Interview for filling up of following post under the
NCDC Umbrella Scheme in National Viral Hepatitis Surveillance
Programme (NVHSP), Dept. of Microbiology, RIMS, Ranchi,
Jharkhand</a
>
</li>
<li class="mt-2">
<a class="td" href=""
>Walk in Interview for filling up of following post under the
NCDC Umbrella Scheme, HAI Surveillance, National Programme on
Antimicrobial Resistance Containment, Dept. of Microbiology,
RIMS, Ranchi, Jharkhand</a
>
</li>
<li class="mt-2">
<a class="td" href="">
Interview Result for the post of "Medical/Research Officer",
"Research Associate", Research Technician & Research Assistant
Advertisement No. DRO/2023/80 dated 15/03/2023</a
>
</li>
</ul>
<div>
<div class="d-flex justify-content-end">
<span><a href="">View More...</a></span>
</div>
</div>
</div>
</div>
<!-- Gallary -->
<div id="Gallary" class="mt-5 mb-5 pt-5">
<div class="mb-5"> <p class="linkp">
<span class="box h6"> Gallary </span>
</p></div>
<div class="d-flex flex-wrap align-items-start justify-content-evenly">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="Images/Card Images/pp2_a.jpg" alt="Card image cap">
<div class="card-body">
<h5>2023</h5>
<p class="card-text">
<a href="" class="td"> Inauguration Ceremony "Pain & Palliative Care Services" under Department of Anesthesiology, RIMS, Ranchi</a>
</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="Images/Card Images/whd_23_1_a.jpg" alt="Card image cap">
<div class="card-body">
<h5>2023</h5>
<p class="card-text">
<a href="" class="td">
On the occassion of world health day , Quiz competition was organised by the Department of PSM under aegis of IAPSM on 10th April 2023 </p>
</div>
</div>
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="Images/Card Images/1_a.jpg" alt="Card image cap">
<div class="card-body">
<h5>2023</h5>
<p class="card-text">
<a href="" class="td"> Inauguration Ceremony "Pain & Palliative Care Services" under Department of Anesthesiology, RIMS, Ranchi</a>
</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="Images/Card Images/3_a.jpg" alt="Card image cap">
<div class="card-body">
<h5>2023</h5>
<p class="card-text">
<a href="" class="td"> Inauguration Ceremony "Pain & Palliative Care Services" under Department of Anesthesiology, RIMS, Ranchi</a>
</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="Images/Card Images/3_a.jpg" alt="Card image cap">
<div class="card-body">
<h5>2023</h5>
<p class="card-text">
<a href="" class="td"> Inauguration Ceremony "Pain & Palliative Care Services" under Department of Anesthesiology, RIMS, Ranchi</a>
</p>
</div>
</div>
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="Images/Card Images/w_grd_2_a.jpg" alt="Card image cap">
<div class="card-body">
<h5>2023</h5>
<p class="card-text">
<a href="" class="td"> Inauguration Ceremony "Pain & Palliative Care Services" under Department of Anesthesiology, RIMS, Ranchi</a>
</p>
</div>
</div>
</div>
</div>
</main>
<footer class=" bg-dark text-light container mb-5 pt-4 pb-4">
<div class="container">
<div class="row">
<div class="col-lg-3">
<h5>Site Navigation</h5>
<ul class="list-unstyled">
<li>About Us</li>
<li>Contact Us</li>
<li>Departments</li>
<li>RTI</li>
<li>Patients</li>
<li>Tenders</li>
<li>Recruitments</li>
<li>Quick Links</li>
</ul>
</div>
<div class="col-lg-3">
<h5>Government Links</h5>
<ul class="list-unstyled">
<li>Government of Jharkhand</li>
<li>National Medical Commission</li>
<li>Ministry of Health and Family Welfare</li>
<li>Junior Doctors' Association</li>
</ul>
</div>
<div class="col-lg-3">
<h5>Useful Links</h5>
<ul class="list-unstyled">
<li>Antiragging</li>
<li>Online Registration System</li>
<li>Contact</li>
</ul>
</div>
<div class="col-lg-3">
<h5>Contact Information</h5>
<p>RIMS, Bariatu<br />Ranchi, Jharkhand, India</p>
<p>Ph : 0651-2776000<br />Fax: +91-651-2540629</p>
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d58956.17749061071!2d88.37529600000002!3d22.550620527699767!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2sin!4v1683173574049!5m2!1sen!2sin"
width="200"
height="100"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
<p>IT Associate : COMPUTER Ed.</p>
</div>
</div>
</div>
</footer>
<!-- Modal login -->
<!-- Modal -->
<div
class="modal fade"
id="loginModal"
tabindex="-1"
aria-labelledby="loginModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="loginModalLabel">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
fill="currentColor"
d="M12 5.5A3.5 3.5 0 0 1 15.5 9a3.5 3.5 0 0 1-3.5 3.5A3.5 3.5 0 0 1 8.5 9A3.5 3.5 0 0 1 12 5.5M5 8c.56 0 1.08.15 1.53.42c-.15 1.43.27 2.85 1.13 3.96C7.16 13.34 6.16 14 5 14a3 3 0 0 1-3-3a3 3 0 0 1 3-3m14 0a3 3 0 0 1 3 3a3 3 0 0 1-3 3c-1.16 0-2.16-.66-2.66-1.62a5.536 5.536 0 0 0 1.13-3.96c.45-.27.97-.42 1.53-.42M5.5 18.25c0-2.07 2.91-3.75 6.5-3.75s6.5 1.68 6.5 3.75V20h-13v-1.75M0 20v-1.5c0-1.39 1.89-2.56 4.45-2.9c-.59.68-.95 1.62-.95 2.65V20H0m24 0h-3.5v-1.75c0-1.03-.36-1.97-.95-2.65c2.56.34 4.45 1.51 4.45 2.9V20Z"
/>
</svg>
Log in here...
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input
type="email"
class="form-control"
id="email"
placeholder="Enter email"
/>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input
type="password"
class="form-control bottom-hidden"
id="password"
placeholder="Password"
/>
</div>
<button type="submit" class="btn fw-bold">
Log in<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
fill="currentColor"
d="M12 21v-2h7V5h-7V3h7q.825 0 1.413.588T21 5v14q0 .825-.588 1.413T19 21h-7Zm-2-4l-1.375-1.45l2.55-2.55H3v-2h8.175l-2.55-2.55L10 7l5 5l-5 5Z"
/>
</svg>
</button>
<a href="#" class="fw-bold text-decoration-none ps-5"
>Forgot password?</a
>
</form>
</div>
</div>
</div>
</div>
<!-- Bootstrap JavaScript Libraries -->
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.min.js"
integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz"
crossorigin="anonymous"
></script>
</body>
</html>