Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f30ad2538e | ||
|
|
5c2dd83a76 | ||
|
|
3a1085ca2b | ||
|
|
4040f0dfef | ||
|
|
d67b760322 | ||
|
|
8fd6fa001b | ||
|
|
6f0bcceb8b | ||
|
|
6b46acac6a | ||
|
|
843fd6e94d | ||
|
|
30b82bf2a1 | ||
|
|
e45a37f87e |
@@ -31,11 +31,14 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex flex-column mx-4" >
|
<div class="d-flex flex-column mx-4" >
|
||||||
<h2 class="text-uppercase" style="color: #614e41;"><b>Sree Chaitanya College</b></h2>
|
<h3 class="text-uppercase" style="color: #614e41;"><b>SREE CHAITANYA COLLEGE, HABRA</b></h3>
|
||||||
<h5 style="color: #614e41;">Estd: 1956</h5>
|
<h6 style="background-color: #614e41; color: #fff; text-align: center; width: fit-content; padding: 5px 10px; border-radius: 10px;">(GOVT. SPONSORED)</h6>
|
||||||
<h5 class="" style="color: #614e41;"><b>(Arts and Science)</b></h5>
|
<h6>Affiliated to West Bengal State University, Barasat</h6>
|
||||||
<p style="color: #402517;">Prafullanagar, Habra, 24Pgs(N) Pin-743268, W.B</p>
|
<h6>NAAC GRADING – B++</h6>
|
||||||
<p style="margin-top: -15px; color: #402517;" class="">sreechaitanyacollege@rediffmail.com</p>
|
<h5 style="color: #614e41;">Estd: 1956 <span>(Arts and Science)</span></h5>
|
||||||
|
<!-- <h5 class="" style="color: #614e41;"><b></b></h5> -->
|
||||||
|
<!-- <p style="color: #402517;">Prafullanagar, Habra, 24Pgs(N) Pin-743268, W.B</p>
|
||||||
|
<p style="margin-top: -15px; color: #402517;" class="">sreechaitanyacollege@rediffmail.com</p> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -156,10 +159,13 @@
|
|||||||
<img src="/assets/logo3.png" alt="" width="60" />
|
<img src="/assets/logo3.png" alt="" width="60" />
|
||||||
</div> -->
|
</div> -->
|
||||||
<div class="d-flex flex-column " style="margin-top: 10px;" >
|
<div class="d-flex flex-column " style="margin-top: 10px;" >
|
||||||
<h2 style="margin-top: -6px; color: #6b6245;" class="">Sree Chaitanya College</h2>
|
<h6 style="margin-top: -6px; color: #6b6245;" class="">Sree Chaitanya College, Habra</h6>
|
||||||
<h5 style="margin-top: -6px; color: #6b6245;" class="">(Arts and Science)</h5>
|
<h6 style="background-color: #614e41; color: #fff; text-align: center; width: fit-content; padding: 5px 10px; border-radius: 10px; font-size: 13px;">(GOVT. SPONSORED)</h6>
|
||||||
<p style="margin-top: -6px; color: #402517;" class="">Prafullanagar, Habra, 24Pgs(N) Pin-743268, W.B</p>
|
<h6 style="font-size: 13px;">Affiliated to West Bengal State University, Barasat</h6>
|
||||||
<p style="margin-top: -15px; color: #402517;" class="">sreechaitanyacollege@rediffmail.com</p>
|
<h6 style="font-size: 13px;">NAAC GRADING – B++</h6>
|
||||||
|
<h6 style="color: #614e41; font-size: 13px;">Estd: 1956 <span>(Arts and Science)</span></h6>
|
||||||
|
<!-- <p style="margin-top: -6px; color: #402517;" class="">Prafullanagar, Habra, 24Pgs(N) Pin-743268, W.B</p> -->
|
||||||
|
<!-- <p style="margin-top: -15px; color: #402517;" class="">sreechaitanyacollege@rediffmail.com</p> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
133
.hta_slug/contact-us.php
Normal file
133
.hta_slug/contact-us.php
Normal file
@@ -0,0 +1,133 @@
|
|||||||
|
<style>
|
||||||
|
/* Basic Reset */
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Body Styling */
|
||||||
|
.contact-body {
|
||||||
|
font-family: 'Arial', sans-serif;
|
||||||
|
background-color: #f4f7fc;
|
||||||
|
color: #333;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Container Class */
|
||||||
|
.contact-container {
|
||||||
|
width: 90%;
|
||||||
|
max-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 40px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Contact Title */
|
||||||
|
.contact-title {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #007bff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Contact Subtitle */
|
||||||
|
.contact-subtitle {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: #555;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Contact Information Section */
|
||||||
|
.contact-info {
|
||||||
|
background-color: white;
|
||||||
|
padding: 20px;
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-info p {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Address Style */
|
||||||
|
.contact-address {
|
||||||
|
margin-top: 1rem;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-link {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #007bff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-link:hover {
|
||||||
|
color: #0056b3;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Map Section */
|
||||||
|
.contact-map-container {
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-map-frame {
|
||||||
|
width: 100%;
|
||||||
|
height: 450px;
|
||||||
|
border: 0;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Styling */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.contact-title {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-info {
|
||||||
|
padding: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-map-frame {
|
||||||
|
height: 300px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 576px) {
|
||||||
|
.contact-container {
|
||||||
|
width: 100%;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-title {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-info {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="contact-body">
|
||||||
|
|
||||||
|
<!-- Main Content Section -->
|
||||||
|
<div class="contact-container">
|
||||||
|
|
||||||
|
<!-- Contact Information Section -->
|
||||||
|
<div class="contact-info">
|
||||||
|
<h1 class="contact-title">Sree Chaitanya College, Habra</h1>
|
||||||
|
<p class="contact-subtitle">(Arts and Science)</p>
|
||||||
|
<p class="contact-address">Prafullanagar, Habra, 24Pgs(N) Pin-743268, W.B</p>
|
||||||
|
<p><strong>Phone:</strong> <a href="tel:+913216237020" class="contact-link">+91 8391054522</a></p>
|
||||||
|
<p><strong>Email:</strong> <a href="mailto:info@sreechaitanyacollege.ac.in" class="contact-link">info@sreechaitanyacollege.ac.in</a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Map Section -->
|
||||||
|
<div class="contact-map-container">
|
||||||
|
<p class="contact-subtitle">View on Google Map</p>
|
||||||
|
<iframe class="contact-map-frame" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3677.0775585659544!2d88.64048451555165!3d22.83661988504755!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39f8b071c69b9933%3A0x5181c48a7b97726e!2sSree%20Chaitanya%20College%2C%20Habra!5e0!3m2!1sen!2sin!4v1667829054410!5m2!1sen!2sin"></iframe>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
429
faculty/amit-kr-das.php
Normal file
429
faculty/amit-kr-das.php
Normal file
@@ -0,0 +1,429 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Amit Kumar Das</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT in Defence Studies</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, Phd</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: National Security</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Geopolitics , Geo strategy, International Relation</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>BA</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>History, Defence, Education</td>
|
||||||
|
<td>Kalyani University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MA</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Defence Studies</td>
|
||||||
|
<td>CSJMU University, Kanpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MA (Appearing)</td>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Education</td>
|
||||||
|
<td>Netaji Subash Open University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Diploma in Computer</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Indira Gandhi National Computer Centre</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PhD (Pursuing)</td>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Defence Studies</td>
|
||||||
|
<td>Mahatma Jyotiba Phule Rohilkhand University, Bareilly, UP</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Guest Faculty</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>SACT</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Amit Kumar Das</td>
|
||||||
|
<td>Birsa Munda : An unsung Tribal Valiant Warrior</td>
|
||||||
|
<td>Valiant Indian Warrior (Book Chapter)</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Amit Kumar Das</td>
|
||||||
|
<td>India’s Strategic Partnership with Myanmar</td>
|
||||||
|
<td>Vasudhaiva Kutumbakam: India’s Neighbourhood Foreign Policy (Book Chapter)</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>Amit Kumar Das</td>
|
||||||
|
<td>Baishik sankate Bharater Vhumika</td>
|
||||||
|
<td>G20 : A Way Forward</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04</td>
|
||||||
|
<td>Amit Kumar Das</td>
|
||||||
|
<td>Buddha and Vivekananda (Translated Book)</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Amit Kumar Das (Presented)</td>
|
||||||
|
<td>Recent Escalation in North east : Manipur Ambush</td>
|
||||||
|
<td>Emerging Trends in Research and Developments</td>
|
||||||
|
<td>RIMT University, Punjab</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Amit Kumar Das (Presented)</td>
|
||||||
|
<td>শিলিগুড়ি করিডোর দেশের আভ্যন্তরীন নিরাপত্তায় এক গভীর চ্যালেঞ্জ।</td>
|
||||||
|
<td>Populism, Democracy, Development: Recent Trends</td>
|
||||||
|
<td>Dept. of Political Science, Sree Chaitanya College</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2025</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Amit Kumar Das</td>
|
||||||
|
<td>Indian Military Power : World View</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>Amit Kumar Das</td>
|
||||||
|
<td>India’s Internal Security Challenge : Covid Crisis and role of external Actors</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Asanagar MMT College, Kalyani University</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04</td>
|
||||||
|
<td>Amit Kumar Das</td>
|
||||||
|
<td>India’s strategic Planning : Opportunity and Challenges</td>
|
||||||
|
<td></td>
|
||||||
|
<td>RDK College, Kalyani University</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>NEP</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>DFSCOR101T</td>
|
||||||
|
<td>DFSCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>DFSGCOR202T</td>
|
||||||
|
<td>DFSGCOR202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>DFSGCOR303T</td>
|
||||||
|
<td>DFSGCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>CBCS</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>DFSGCORO1T</td>
|
||||||
|
<td>DFSGCORO1T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>DFSGCOR02T</td>
|
||||||
|
<td>DFSGCOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>DFSGCOR03T</td>
|
||||||
|
<td>DFSGCOR03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>DFSGCOR04T</td>
|
||||||
|
<td>DFSGCOR04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>DFSGDSE01T</td>
|
||||||
|
<td>DFSGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>DFSGDSE02T</td>
|
||||||
|
<td>DFSGDSE02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>DFSGDSE03T</td>
|
||||||
|
<td>DFSGDSE03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>DFSGDSE06T</td>
|
||||||
|
<td>DFSGDSE06T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>DFSGGEC01T</td>
|
||||||
|
<td>DFSGGEC01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>DFSGGEC02T</td>
|
||||||
|
<td>DFSGGEC02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>DFSGSSEC01M</td>
|
||||||
|
<td>DFSGSSEC01M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>DFSGSSEC02M</td>
|
||||||
|
<td>DFSGSSEC02M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>DFSGSSEC03M</td>
|
||||||
|
<td>DFSGSSEC03M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>DFSGSSEC04M</td>
|
||||||
|
<td>DFSGSSEC04M</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
1146
faculty/amrita-chakraborty.php
Normal file
1146
faculty/amrita-chakraborty.php
Normal file
File diff suppressed because it is too large
Load Diff
336
faculty/ananya-saha.php
Normal file
336
faculty/ananya-saha.php
Normal file
@@ -0,0 +1,336 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Ananya Saha</h3>
|
||||||
|
<p class="" style="font-weight: 500;">State Aided College Teacher (SACT-1)</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:ananya.math@scc.ac.in" class="fw-bold">ananya.math@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">8240004825</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Pure Mathematics (Algebra, Analysis) </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Applied Mathematics (related with computer science). </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>Jadavpur University, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>Jadavpur University, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Science</td>
|
||||||
|
<td>Jadavpur University, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>September, 2013</td>
|
||||||
|
<td>December, 2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT-1 Faculty</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>January, 2020</td>
|
||||||
|
<td>Working</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Gobardanga Hindu College</td>
|
||||||
|
<td>January, 2019</td>
|
||||||
|
<td>August, 2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Visiting Faculty</td>
|
||||||
|
<td>Aliah University, New Town, Kolkata</td>
|
||||||
|
<td>March, 2021</td>
|
||||||
|
<td>February, 2022</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>NBHM Research Fellowship Award in Mathematics</td>
|
||||||
|
<td>Department of Atomic Energy, Government of India</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Research Fellowship Award from CSIR</td>
|
||||||
|
<td>CSIR</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Ananya Saha and Buddhadeb Sau</td>
|
||||||
|
<td>Network localization with noisy distances by non-convex optimization</td>
|
||||||
|
<td>In proceedings of International IEEE Conference on Wireless Communications, Signal Processing and Networking (WiSPNET)<br>ISBN: 978-1-4673-9338-6</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>704-708</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Ananya Saha, Srabani Mukhopadhyaya and Buddhadeb Sau</td>
|
||||||
|
<td>A Taxonomy on Rigidity of Graphs</td>
|
||||||
|
<td>Indian Journal of Science and Technology<br>ISSN: 0974-5645</td>
|
||||||
|
<td>Vol. 10, Issue 32</td>
|
||||||
|
<td>1-17</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Ananya Saha and Buddhadeb Sau</td>
|
||||||
|
<td>Network localization by non-convex optimization</td>
|
||||||
|
<td>In proceedings of ACM MobiMWareHN17 Workshop held in conjunction with 18th ACM MobiHoc 2017<br>ISBN: 978-1-4503-5049-5</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Ananya Saha and Buddhadeb Sau</td>
|
||||||
|
<td>Network Localisation using Lagrangian Optimization</td>
|
||||||
|
<td>International Journal of Sensor Networks<br>ISSN: 1748-1287</td>
|
||||||
|
<td>Vol. 31</td>
|
||||||
|
<td>65 onward</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Ananya Saha and Buddhadeb Sau</td>
|
||||||
|
<td>Network localization with noisy distances by non-convex optimization</td>
|
||||||
|
<td>International IEEE Conference on Wireless Communications, Signal Processing and Networking (WiSPNET)</td>
|
||||||
|
<td>Electronics & Communication Engineering Department, Sri Sivasubramaniya Nadar College of Engineering, Chennai-603110, India</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Ananya Saha and Buddhadeb Sau</td>
|
||||||
|
<td>Network localization by non-convex optimization</td>
|
||||||
|
<td>ACM MobiMWareHN17 Workshop held in conjunction with 18th ACM MobiHoc 2017</td>
|
||||||
|
<td>IIT Madras, Chennai, India</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Real Analysis, Algebra (Linear and Abstract), Numerical Analysis, Probability and Statistics, etc.</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
358
faculty/animesh-sarkar.php
Normal file
358
faculty/animesh-sarkar.php
Normal file
@@ -0,0 +1,358 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">ANIMESH SARKAR</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-I</p>
|
||||||
|
<p style="margin-top: -10px;">P.G, B.Ed, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:animeshsarkar0192@gmail.com" class="fw-bold">animeshsarkar0192@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9733925065</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: PRAGADHUNIK BANGLA SAHITYA</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: SURVEY AND RESEARCH ON THEATRE</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>P.G.</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>BENGALI</td>
|
||||||
|
<td>WEST BENGAL STATE UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.ED.</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>BENGALI</td>
|
||||||
|
<td>WEST BENGAL STATE UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PH.D.</td>
|
||||||
|
<td>Running…</td>
|
||||||
|
<td>BENGALI</td>
|
||||||
|
<td>WEST BENGAL STATE UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>GUEST LECTURER</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>24.09.2018</td>
|
||||||
|
<td>31.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT-1</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>01.01.2020</td>
|
||||||
|
<td>TILL NOW</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>ACADEMIC COUNCILLOR</td>
|
||||||
|
<td>NETAJI SUBHAS OPEN UNIVERSITY</td>
|
||||||
|
<td>01.02.2024</td>
|
||||||
|
<td>TILL NOW</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>BIDROHI NARI CHARITRA JAMILA</td>
|
||||||
|
<td>UGC CARE LIST</td>
|
||||||
|
<td>EBONG MOHUYA</td>
|
||||||
|
<td>ARTICLE 246-252</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>PRAGADHUNIK BANGLA SAHITYE PATRA BYABOHARER ANUSANDHAN O TAR PARJALOCHANA</td>
|
||||||
|
<td>SOM PUBLISHING</td>
|
||||||
|
<td>NATIONAL JOURNAL</td>
|
||||||
|
<td>978-81-950554-3-2 BOOK 1-96</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>ANIMESH SARKAR & SUSMITA BISWAS</td>
|
||||||
|
<td>BIPARJAYER ABHIGHATE BANGLA SAHITYA</td>
|
||||||
|
<td>SOM PUBLISHING</td>
|
||||||
|
<td>NATIONAL JOURNAL</td>
|
||||||
|
<td>978-81-950554-5-6 BOOK 63-76</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>SHASAKER SANGHAT O ITIHASER BINIRMANE BANGLAR MANGALKABYA</td>
|
||||||
|
<td>PRAGGA BIKASH</td>
|
||||||
|
<td>978-93-91321-46-8</td>
|
||||||
|
<td>ARTICLE 89-95</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>RABINDRANATHER ‘SAHAJPATH’: SHISHU-KISHORER EK ANANYA MANOJAGAT</td>
|
||||||
|
<td>SHISHU-KISHOR MANOJAGAT: LOKSAHITYA-SHISHTA SAHITYA</td>
|
||||||
|
<td>RAMAKRISHNA MISSION RESIDENTIAL COLLEGE (AUTONOMOUS)</td>
|
||||||
|
<td>INTERNATIONAL</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>MAHAMARI PRASANGA: PREKSHRIT SAHITYA O SAMAJ</td>
|
||||||
|
<td></td>
|
||||||
|
<td>WEST BENGAL STATE UNIVERSITY</td>
|
||||||
|
<td>INTERNATIONAL</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>BANGLAR SAMAJ-SAHITYE JANAJATI PICHHREBARGA</td>
|
||||||
|
<td></td>
|
||||||
|
<td>RAMAKRISHNA MISSION RESIDENTIAL COLLEGE (AUTONOMOUS)</td>
|
||||||
|
<td>INTERNATIONAL</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>PRASANGA RABINDRANATH</td>
|
||||||
|
<td></td>
|
||||||
|
<td>JANGIPUR COLLEGE</td>
|
||||||
|
<td>INTERNATIONAL (5 DAYS)</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>SATYAJIT 100: AEK SHILPI, BOHU SHILPO</td>
|
||||||
|
<td></td>
|
||||||
|
<td>GOBARDANGA HINDU COLLEGE</td>
|
||||||
|
<td>INTERNATIONAL (2 DAYS)</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>PRAKRITIK BIPORYOY, OTIMARI EBONG BANGLA SAHITYA</td>
|
||||||
|
<td></td>
|
||||||
|
<td>SAROJINI NAIDU COLLEGE FOR WOMEN</td>
|
||||||
|
<td>INTERNATIONAL</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>ANIMESH SARKAR</td>
|
||||||
|
<td>15 MORE NATIONAL-INTERNATIONAL WEBINARS.</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Category</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ADVANCED DIPLOMA IN INFORMATION TECNOLOGY(ADIT)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
336
faculty/anupam-ghosh.php
Normal file
336
faculty/anupam-ghosh.php
Normal file
@@ -0,0 +1,336 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Anupam Ghosh</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-II</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:anupamghosh.phys@scc.ac.in" class="fw-bold">anupamghosh.phys@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Astrophysics</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
<td>Wbsu</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
<td>Wbsu</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed</td>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Physical Science</td>
|
||||||
|
<td>Wbuttepa</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT - II</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Continue</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Category</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Core</td>
|
||||||
|
<td>PHSGCOR01T + PHSGCOR01P</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Core</td>
|
||||||
|
<td>PHSGCOR02T + PHSGCOR02P</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Core</td>
|
||||||
|
<td>PHSGCOR03T + PHSGCOR03P</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Core</td>
|
||||||
|
<td>PHSGCOR04T + PHSGCOR04P</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>DSE</td>
|
||||||
|
<td>PHSGDSE02T</td>
|
||||||
|
<td>Perspectives of Modern Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>DSE</td>
|
||||||
|
<td>PHSGDSE04T</td>
|
||||||
|
<td>Nuclear and Particle Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
<td>PHSMIN101T + PHSMIN101P</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
<td>PHSMIN202T + PHSMIN202P</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
<td>PHSMIN303T + PHSMIN303P</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Core</td>
|
||||||
|
<td>PHSCOR404T + PHSCOR404P</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Core</td>
|
||||||
|
<td>PHSCOR505T</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Core</td>
|
||||||
|
<td>PHSCOR606T + PHSCOR606P</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
312
faculty/arnab-shome.php
Normal file
312
faculty/arnab-shome.php
Normal file
@@ -0,0 +1,312 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Arnab Shome</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-II</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:arnabShome.phys@sreechaitanyacollege.ac.in" class="fw-bold">arnabShome.phys@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Nuclear Techniques </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Astronomy</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.SC.</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>PHYSICS</td>
|
||||||
|
<td>UNIVERSITY OF CALCUTTA</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.SC.</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>PHYSICS</td>
|
||||||
|
<td>GITAM UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Guest Teacher</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>04.09.2017</td>
|
||||||
|
<td>31.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT - II <br> (State Aided College Teacher, Category-II)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.01.2020</td>
|
||||||
|
<td>Till Now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Category</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>CBCS/NEP</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>NEP Sem I - Minor</td>
|
||||||
|
<td>PHSMIN101T, PHSMIN101P, PHSCOR101T, PHSCOR101P</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>NEP Sem II - Minor</td>
|
||||||
|
<td>PHSMIN202T, PHSMIN202P, PHSCOR202T, PHSCOR202P</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>NEP Sem III - Minor</td>
|
||||||
|
<td>PHSMIN303T, PHSMIN303P, PHSCOR303T, PHSCOR303P</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>CBCS Sem I - Core</td>
|
||||||
|
<td>PHSGCOR01T, PHSGCOR01P</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>CBCS Sem II - Core</td>
|
||||||
|
<td>PHSGCOR02T, PHSGCOR02P</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>CBCS Sem III - Core</td>
|
||||||
|
<td>PHSGCOR03T, PHSGCOR03P</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>CBCS Sem IV - Core</td>
|
||||||
|
<td>PHSGCOR04T, PHSGCOR04P</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>CBCS Sem V - General</td>
|
||||||
|
<td>PHSGDSE02T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>CBCS Sem VI - General</td>
|
||||||
|
<td>PHSGDSE04T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
299
faculty/arpita-chakraborty.php
Normal file
299
faculty/arpita-chakraborty.php
Normal file
@@ -0,0 +1,299 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Smt. Arpita Chakraborty</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT, Dept. of Political Science</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, B.Ed, M.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:arpita.polsc.chakraborty@gmail.com" class="fw-bold">arpita.polsc.chakraborty@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Public Administration </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest:</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>BA</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>Rabindra Bharati University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MA</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>Rabindra Bharati University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.ED.</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Rabindra Bharati University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.ED.</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td></td>
|
||||||
|
<td>University of Kalyani</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SACT</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>07/08/2018</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Arpita Chakraborty</td>
|
||||||
|
<td>Protection to Whistle Blowers: A New Horizon in Indian Democracy</td>
|
||||||
|
<td>Democracy in Indian Politics: Negotiating Azadi @75</td>
|
||||||
|
<td>Vol-I</td>
|
||||||
|
<td>156-167</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Arpita Chakraborty</td>
|
||||||
|
<td>Bharotiya Gonotontrer Songkote Gandhijir Bikolpo Dharona</td>
|
||||||
|
<td>Democracy in Indian Politics: Negotiating Azadi @75</td>
|
||||||
|
<td>Gobardanga Hindu College with collaboration of IQAC</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Sem-1</td>
|
||||||
|
<td>Sovereignty, Rights, Law, Liberty, Equality</td>
|
||||||
|
<td>PLSMIN101T / PLSCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Sem-3</td>
|
||||||
|
<td>Legislature in UK, USA, PRC <br> Judiciary in UK, USA, PRC</td>
|
||||||
|
<td>PLSMIN303T / PLSCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Sem-5</td>
|
||||||
|
<td>Reading Gandhi - Satyagraha</td>
|
||||||
|
<td>PLSADSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Sem-5</td>
|
||||||
|
<td>Gandhi on Modern Civilization and Modern Industrialization based on Large and Heavy Industries and Alternative Modernity; Critique of Development</td>
|
||||||
|
<td>PLSGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
518
faculty/artatrana-gochhayat.php
Normal file
518
faculty/artatrana-gochhayat.php
Normal file
@@ -0,0 +1,518 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Artatrana Gochhayat</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Associate Professor</p>
|
||||||
|
<p style="margin-top: -10px;">P.G, M.Phil, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:agpolsc@scc.ac.in" class="fw-bold">agpolsc@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Modern Political Theory and Research Methodology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Multiculturalism, Postmodernism, Postcolonialism</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>UG</td>
|
||||||
|
<td>1996</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>Utkal University, Odisha</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PG</td>
|
||||||
|
<td>1998</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>Utkal University, Odisha</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Phil.</td>
|
||||||
|
<td>2000</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>Utkal University, Odisha</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PhD</td>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Lecturer (Assistant Professor, Stage-I)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>21/04/2003</td>
|
||||||
|
<td>20/04/2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Assistant Professor, Stage-II</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>21/04/2008</td>
|
||||||
|
<td>20/04/2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Assistant Professor, Stage-II</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>21/04/2013</td>
|
||||||
|
<td>20/04/2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Associate Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>21/04/2016</td>
|
||||||
|
<td>Till Date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Politics of Sub-regionalism in Odisha: The Case of Sambalpur</td>
|
||||||
|
<td>3.00</td>
|
||||||
|
<td>13/03/2015</td>
|
||||||
|
<td>12/03/2017</td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Revisiting Multiculturalism in Ambedkar’s Thought: A Theoretical Perspective</td>
|
||||||
|
<td>Contemporary Voice of Dalit, Sage</td>
|
||||||
|
<td>Published Online on May 1</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Tribe-Caste Conflict and the Question of Christian Insecurity in Odisha: The Case of Kandhamal</td>
|
||||||
|
<td>ASIO Journal of Humanities, Management and Social Sciences (ASIO-JHMSSI)</td>
|
||||||
|
<td>2 (2)</td>
|
||||||
|
<td>1-7</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Odisha as a Multicultural State: From Multiculturalism to Politics of Sub-Regionalism</td>
|
||||||
|
<td>Afro Asian Journal of Social Sciences (AAJOSS)</td>
|
||||||
|
<td>VII (II), Quarter II</td>
|
||||||
|
<td>1-28</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Identity Politics in India: Recent Trends and Challenges</td>
|
||||||
|
<td>Journal of Global Research in Education and Social Science (JOGRESS)</td>
|
||||||
|
<td>3(2)</td>
|
||||||
|
<td>70-84</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Regionalism and Sub-Regionalism: A Theoretical Framework with special reference to India</td>
|
||||||
|
<td>African Journal of Political Science and International Relations (AJPSIR)</td>
|
||||||
|
<td>8(1)</td>
|
||||||
|
<td>10-26</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>From Multiculturalism to Sub-Regionalism: Sambalpur in the State Politics of Odisha</td>
|
||||||
|
<td>South Asian Academic Research Journals (SAARJ)</td>
|
||||||
|
<td>4(1)</td>
|
||||||
|
<td>67-85</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Statehood Demands after Telangana: Politics of Agitation in the Koshal Region in Odisha</td>
|
||||||
|
<td>Quest Journal, Journal of Research in Humanities and Social Science</td>
|
||||||
|
<td>1(3)</td>
|
||||||
|
<td>8-12</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Violation of Human Rights of Minorities in Odisha with special reference to Christians in Kandhmal District</td>
|
||||||
|
<td>International Journal of Humanities and Social Science Invention (IJHSSI)</td>
|
||||||
|
<td>2(3)</td>
|
||||||
|
<td>35-41</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2006</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Refresher</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Refresher</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Refresher</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>From ‘Slavery’ to ‘Emancipation’: Indian Constitution and the Question of Dalit Rights</td>
|
||||||
|
<td>Constitutional Obligations: Values, Rights, Duties and Responsibilities of Citizens</td>
|
||||||
|
<td>Department of Political Science, Ramnagar College, Depal, East Medinipur</td>
|
||||||
|
<td>International Webinar</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Matua Movement and the Dalits: The West Bengal Experience</td>
|
||||||
|
<td>Contemporary Caste, Gender and Minority Questions in West Bengal and Bangladesh: Some Explorations</td>
|
||||||
|
<td>Dept of Sociology, St. Xavier’s College (Autonomous) in collaboration with Victoria University of Wellington, New Zealand, Nagarik Udyog, Dhaka, Ambedkar University, Delhi and Observer Research Foundation, Kolkata</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Feminist Consciousness and Role of Women in the Nationalist Movement of Odisha</td>
|
||||||
|
<td>Gender in Indian History: Its Relation with Different Trajectories of History of Indian Women from 1857 to 1947</td>
|
||||||
|
<td>Dept of History, Vijaygarh Jyotish Ray College, Kolkata</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Artatrana Gochhayat</td>
|
||||||
|
<td>Plains vs Hills: Politics of Sub-regionalism in Odisha</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Paschimbanga Anchalik Itihas O Loksanskriti Charcha Kendra in collaboration with Department of Library and Information Science, Jadavpur University</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Sem-I-NEP</td>
|
||||||
|
<td>DS-1: Political Theory: Concepts</td>
|
||||||
|
<td>PLSDSC101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Sem-I-NEP</td>
|
||||||
|
<td>M 1: Political Theory: Concepts</td>
|
||||||
|
<td>PLSMIN101T / PLSCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Sem-I-NEP</td>
|
||||||
|
<td>SEC-SE-1: Democratic Awareness through Legal Literacy</td>
|
||||||
|
<td>PLSHSE101M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Sem-II-NEP</td>
|
||||||
|
<td>DS-2: Indian Constitution and Government</td>
|
||||||
|
<td>PLSDSC202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Sem-II-NEP</td>
|
||||||
|
<td>M 2: Indian Constitution and Government</td>
|
||||||
|
<td>PLSMIN202T / PLSCOR202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Sem-III-NEP</td>
|
||||||
|
<td>DS-3: Political Theory: Approaches</td>
|
||||||
|
<td>PLSDSC303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Sem-III-NEP</td>
|
||||||
|
<td>M 3: Comparative Government and Politics</td>
|
||||||
|
<td>PLSMIN303T / PLSCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Sem-IV-CBCS</td>
|
||||||
|
<td>CC-8: Political Processes and Institutions in Comparative Perspective</td>
|
||||||
|
<td>PLSACOR08T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Sem-IV-CBCS</td>
|
||||||
|
<td>CC-10: Global Politics</td>
|
||||||
|
<td>PLSACOR010T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Sem-IV-CBCS</td>
|
||||||
|
<td>PLSGDSC-4: Introduction to International Relations</td>
|
||||||
|
<td>PLSGCOR04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Sem-V-CBCS</td>
|
||||||
|
<td>CC-11: Classical Political Philosophy</td>
|
||||||
|
<td>PLSACOR11T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Sem-V-CBCS</td>
|
||||||
|
<td>CC-12: Indian Political Thought-I</td>
|
||||||
|
<td>PLSACOR12T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Sem-V-CBCS</td>
|
||||||
|
<td>PLSADSE-1: Reading Gandhi</td>
|
||||||
|
<td>PLSADSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Sem-V-CBCS</td>
|
||||||
|
<td>PLSGDSE-1: Reading Gandhi</td>
|
||||||
|
<td>PLSGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Sem-V-CBCS</td>
|
||||||
|
<td>PLSGDSE-2: Women, Power and Politics</td>
|
||||||
|
<td>PLSADSE02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Sem-VI-CBCS</td>
|
||||||
|
<td>CC-13: Modern Political Philosophy</td>
|
||||||
|
<td>PLSACOR13T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>Sem-VI-CBCS</td>
|
||||||
|
<td>CC-14: Indian Political Thought-II</td>
|
||||||
|
<td>PLSACOR14T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>Sem-VI-CBCS</td>
|
||||||
|
<td>PLSADSE-6: Governance: Issues and Challenges</td>
|
||||||
|
<td>PLSADSE06T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>19</td>
|
||||||
|
<td>Sem-VI-CBCS</td>
|
||||||
|
<td>PLSGDSE-4: Public Policy in India</td>
|
||||||
|
<td>PLSGDSE04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>20</td>
|
||||||
|
<td>Sem-VI-CBCS</td>
|
||||||
|
<td>PLSGEC-1: Governance: Issues and Challenges</td>
|
||||||
|
<td>PLSGGEC01T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
537
faculty/asha-kumari-mistry.php
Normal file
537
faculty/asha-kumari-mistry.php
Normal file
@@ -0,0 +1,537 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">ASHA KUMARI MISTRY</h3>
|
||||||
|
<p class="" style="font-weight: 500;">ASSISTANT PROFESSOR IN DEFENCE STUDIES</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, M.Phil</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Area Studies, Strategic Studies, International Relations, Himalayan Studies</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Strategic and Area Studies, International Relations, Himalayan Studies</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>M.Phil</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Himalayan Studies</td>
|
||||||
|
<td>University of North Bengal</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Strategic and Area Studies</td>
|
||||||
|
<td>University of North Bengal</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.A</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Political Science (Hons)</td>
|
||||||
|
<td>University of North Bengal</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant Professor in Department of Defence Studies</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.08.2014</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>M.A (First Class First), Medalist</td>
|
||||||
|
<td>University of North Bengal</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Qualified UGC NET-JRF in International and Area Studies</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2009 (Dec)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Qualified UGC NET-JRF in Defence and Strategic Studies</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2009 (June)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Qualified UGC NET (LS) in Defence and Strategic Studies</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2008 (Dec)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>India, China, Nathu La and their Trade Engagements</td>
|
||||||
|
<td>The Himalayan Miscellany</td>
|
||||||
|
<td>Vol.25, 2014</td>
|
||||||
|
<td>84-101</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>Sino-Indian Water Wars: Damming the Brahmaputra</td>
|
||||||
|
<td>Book titled, ‘Indian’s Foreign Policy, Internal Security and Climate Change: Challenges and the way Forward’<br>Bharati Publications, New Delhi, 2021<br>ISBN:978-93-90818-68-6</td>
|
||||||
|
<td></td>
|
||||||
|
<td>83-98</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Asha Kumari Mistry (Jointly)</td>
|
||||||
|
<td>Algorithmic Whistleblowing Mechanism: Futuristic Surveillance Mechanism</td>
|
||||||
|
<td>SIT Journal of Management</td>
|
||||||
|
<td>Vol.12 No.2 December 2022</td>
|
||||||
|
<td>49-57</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>Indian Maritime Logistics: Issues and Security Concerns</td>
|
||||||
|
<td>IOSR Journal of Humanities and Social Science (IOSR-JHSS)</td>
|
||||||
|
<td>Vol.28, Issue 5, Series 3 (May, 2023)</td>
|
||||||
|
<td>10-18</td>
|
||||||
|
<td>May 2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Asha Kumari Mistry (Jointly)</td>
|
||||||
|
<td>Blue Economy: A Sustainable Development Paradigm</td>
|
||||||
|
<td>Book Titled ‘Sustainable Roadmap Development Strategies in India: Paving the way for a Better Future’,<br>Lincoln University College, Malaysia<br><a href="https://doi.org/10.31674/book.2023srdsi006" target="_blank">DOI Link</a></td>
|
||||||
|
<td></td>
|
||||||
|
<td>58-70</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>G-20 New Delhi Leaders’ Summit Declaration: A hard achieved consensus</td>
|
||||||
|
<td>Book titled, “G20 A Way Forward”<br>Homok Prakashni Trust, Kolkata</td>
|
||||||
|
<td></td>
|
||||||
|
<td>19-29</td>
|
||||||
|
<td>Jan 2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>UGC-sponsored Refresher Course on “Environmental Science & Disaster Management (ID)”</td>
|
||||||
|
<td>UGC-HRDC, Ranchi University, Ranchi</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>UGC-sponsored Orientation Programme</td>
|
||||||
|
<td>UGC-HRDC, University of Calcutta</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>UGC- Sponsored Online Refresher Course on “Disaster Management (ID)”</td>
|
||||||
|
<td>UGC-MMTTC, Jammu University</td>
|
||||||
|
<td>2025</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>One Week Interdisciplinary National Workshop on “Ebb and Flow: Surveying the Emerging and Declining Trends in History and Allied Disciplines”</td>
|
||||||
|
<td>Teachers Learning Centre, Central University of Punjab, under Pandit Madan Mohan Malaviya National Mission on Teachers & Teaching (PMMMNMTT), Ministry of HRD, Govt. of India.</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Asha Kumari Mistry (Presented)</td>
|
||||||
|
<td>Rise of Populism in Assam</td>
|
||||||
|
<td>Populism, Democracy, Development: Recent Trends</td>
|
||||||
|
<td>Dept. of Political Science, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2025</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Asha Kumari Mistry (Presented)</td>
|
||||||
|
<td>India-Bangladesh: Cross Border Management</td>
|
||||||
|
<td>6th International Conference on Harmony in Innovation: Bridging Disciplines for Research, Innovation and Sustainable Future</td>
|
||||||
|
<td>RIMT University, Punjab (Online)</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Asha Kumari Mistry (Presented)</td>
|
||||||
|
<td>Artificial Intelligence in Defence Sector: An Introduction</td>
|
||||||
|
<td>Role of Education, Humanities and Social Sciences in achieving Sustainable Development Goals in India</td>
|
||||||
|
<td>RIMT University, Punjab (Online)</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Asha Kumari Mistry (Presented)</td>
|
||||||
|
<td>Defence Indigenisation: The Changing Scenario of Indian Defence Sector</td>
|
||||||
|
<td>Investments Ideas for Wealth Creation: Financial Education for Young Investors</td>
|
||||||
|
<td>University of Gour Banga, Malda in collaboration with Central Depository Services Limited (CDSL)</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Asha Kumari Mistry (Presented)</td>
|
||||||
|
<td>South China Sea: How Troubled are the Waters?</td>
|
||||||
|
<td>16th Annual Conference</td>
|
||||||
|
<td>West Bengal Political Science Association and Kalyani University, Nadia</td>
|
||||||
|
<td>State Level</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="7"><strong>PARTICIPATED/ ATTENDED: (Webinar/ E-Seminar/ Conference)</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>Recent Violent Face-off with China on LAC: Solutions and Prospects</td>
|
||||||
|
<td>E-Seminar</td>
|
||||||
|
<td>Department of Defence & Strategic Studies, University of Allahabad</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>National Security Imperatives vis-à-vis Corona Ramification</td>
|
||||||
|
<td>Webinar</td>
|
||||||
|
<td>Dept. of Defence & Strategic Studies and Research Centre, Guru Nanak College (Autonomous), Chennai</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>Administrative Affairs Thrusting upon Promotion of College Teachers/Librarians under CAS</td>
|
||||||
|
<td>State-Level Webinar</td>
|
||||||
|
<td>City College, Kolkata</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>Gender Issues and Women’s Rights</td>
|
||||||
|
<td>International Webinar</td>
|
||||||
|
<td>Acharya Sulumar Sen Mahavidyalaya, Purba Bardhaman and Birpara College, Alipurduar</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>India-China Relation: Galwan Puzzle and Beyond</td>
|
||||||
|
<td>International E-Conference</td>
|
||||||
|
<td>Dept. of Political Science and Dept. of Civics and Politics, University of Mumbai</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>Leave Rules and Health Schemes for College Teachers in West Bengal</td>
|
||||||
|
<td>State Level Webinar</td>
|
||||||
|
<td>Panihati Mahavidyalaya, Sodepur, Kolkata</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>Relations with China: Challenges and Opportunities in the Pandemic Situation and Onwards</td>
|
||||||
|
<td>National Webinar</td>
|
||||||
|
<td>Dept. of Military Science and Dept. of Political Science, Swami Ramanand Teerth Mahavidyalaya, Ambajogai, Maharashtra</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Asha Kumari Mistry</td>
|
||||||
|
<td>Crisis of Security Challenges: A Global Concern</td>
|
||||||
|
<td>International Webinar</td>
|
||||||
|
<td>Dept. of Defence and Strategic Studies, Tuljaram Chaturchand College</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>NEP</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>DFSCOR101T</td>
|
||||||
|
<td>DFSCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>DFSGCOR202T</td>
|
||||||
|
<td>DFSGCOR202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>DFSGCOR303T</td>
|
||||||
|
<td>DFSGCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>CBCS</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>DFSGCORO1T</td>
|
||||||
|
<td>DFSGCORO1T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>DFSGCOR02T</td>
|
||||||
|
<td>DFSGCOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>DFSGCOR03T</td>
|
||||||
|
<td>DFSGCOR03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>DFSGCOR04T</td>
|
||||||
|
<td>DFSGCOR04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>DFSGDSE01T</td>
|
||||||
|
<td>DFSGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>DFSGDSE02T</td>
|
||||||
|
<td>DFSGDSE02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>DFSGDSE03T</td>
|
||||||
|
<td>DFSGDSE03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>DFSGDSE06T</td>
|
||||||
|
<td>DFSGDSE06T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>DFSGGEC01T</td>
|
||||||
|
<td>DFSGGEC01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>DFSGGEC02T</td>
|
||||||
|
<td>DFSGGEC02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>DFSGSSEC01M</td>
|
||||||
|
<td>DFSGSSEC01M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>DFSGSSEC02M</td>
|
||||||
|
<td>DFSGSSEC02M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>DFSGSSEC03M</td>
|
||||||
|
<td>DFSGSSEC03M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>DFSGSSEC04M</td>
|
||||||
|
<td>DFSGSSEC04M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>Taught Papers for Under-Graduate Students:</strong> Part (1+1+1) (Theory+Practical), CBCS and NEP</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
726
faculty/bedprakash-ray.php
Normal file
726
faculty/bedprakash-ray.php
Normal file
@@ -0,0 +1,726 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Bedprakash Ray</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Associate Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc(Honours), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:bedprakash.ray@gmail.com" class="fw-bold">bedprakash.ray@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9434827757</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Social-Cultural Anthropology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Potters of North 24 Parganas in West Bengal- An Ethnographic Study. </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-journal-tab" data-bs-toggle="pill" data-bs-target="#v-pills-journal" type="button" role="tab" aria-controls="v-pills-journal" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/news.svg" alt="" />Journal Publication </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-paper-tab" data-bs-toggle="pill" data-bs-target="#v-pills-paper" type="button" role="tab" aria-controls="v-pills-paper" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/paper.svg" alt="" />Paper Presentation </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-award-tab" data-bs-toggle="pill" data-bs-target="#v-pills-award" type="button" role="tab" aria-controls="v-pills-award" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button> -->
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-hand-tab" data-bs-toggle="pill" data-bs-target="#v-pills-hand" type="button" role="tab" aria-controls="v-pills-hand" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/hand.svg" alt="" />Membership </button> -->
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>SL NO.</th>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>B.Sc. (Honours)</td>
|
||||||
|
<td>1993</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>1995</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Associate Professor in Anthropology</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>02.01.2001</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>UGC-JRF</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>1997</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Bharat Ratna Indira Gandhi Gold Medal Award</td>
|
||||||
|
<td>Global Economic Progress & Research Association</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-journal" role="tabpanel" aria-labelledby="v-pills-journal-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">JOURNAL PUBLICATION</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Published On</th>
|
||||||
|
<th>Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Observation of microwave plasmons in one-dimensional conjugated polymer chain. B Mondal, D Majumdar and S K Saha Appl. Phys. Lett. 94 (2009) 183109.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mechanism of Ultrasonic Energy-Assisted Formation of V-, Y-Shaped Nano-Structures in Conjugated Polymers D Majumdar R P Maity, S Basu, and S K Saha J. Nano Sc. & Nanotech. 9 (2009) 6896-6901.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Graphene quantum sheet: A new material for spintronic application. S K Saha, M Baskey, D Majumdar. Adv. Mater. 22 (2010) 5531.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Observation of ferroelectric response in conjugated polymer nanotubes. D Majumdar and S K Saha Appl. Phys. Lett., 96 (2010) 183113.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Poly(3-hexylthiophene) nanotubes with superior electronic and optical properties. D Majumdar and S K Saha Chem. Phys. Lett., 489 (2010) 219.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Synthesis of single crystalline micron-sized rectangular silver bar. B Mondal, D Majumdar and S K Saha, J. Mater. Research. 25 (2010) 383.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Nanotechnology: Its current scope and prospect Dipanwita Majumdar Acad. J Aureole Vol 3(2), (2011) 114-119.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Epitaxial growth of crystalline polyaniline on reduced graphene oxide D Majumdar M Baskey, S K Saha Macromol. Rapid Commun. 32 (2011) 1277.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Graphene and its composites as supercaps. Dipanwita Majumdar Acad. J Aureole 4, (2013) 11-16.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Reduced Graphene Oxide: An Efficient Supercapacitor Material. Dipanwita Majumdar Academic J. Aureole, 5 (2014) 42-46.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Graphene-MnO2 Composite as Electrocatalyst for Oxygen Reduction Reactions. Dipanwita Majumdar Academic J. Aureole, 6&7(1) (2015-16) 31-37.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Charge Transport in Polypyrrole Nanotubes. Dipanwita Majumdar, S.K. Saha J. Nanosci. Nanotechnol. 15 (2015) 9975-9981.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Graphene-Polyaniline nanocomposites as Proficient Energy Storage Material-An Overview. Dipanwita Majumdar Innovative Energy & Research 5 (2016) 2.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Sonochemically Synthesized Beta-Cyclodextrin Functionalized Graphene Oxide and its Efficient Role in Adsorption of Water Soluble Brilliant Green Dye. Dipanwita Majumdar J Environ Anal Toxicol 6 (2016) 5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Hydroxy functionalized Graphene: A Proficient Energy Storage Material, Dipanwita Majumdar and Sujata Pal, J Fundam. Renewable Energy Appl., 6 (2016) 209.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Microwave-assisted synthesis of Mn2O3 porous balls as bifunctional electrocatalyst for oxygen reduction and evolution reaction Dipanwita Majumdar, et al Catal. Sci. Technol., 6(5) (2016) 1417-1429.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Synthesis, characterization and electrochemical study of hydroxy-functionalized graphene/MnO2 nanocomposite D Majumdar, SK Bhattacharya Materials Today: Proceedings 3 (10), 3872-3877.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Sonochemically synthesized hydroxy-functionalized graphene-MnO2 nanocomposite for supercapacitor applications. Dipanwita Majumdar, and Swapan K Bhattacharya J Appl Electrochem 47 (2017) 789-801.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Proficiency of graphene oxide in adsorption and removal of methylene blue from water: An overview. Dipanwita Majumdar J Environ Chem Toxicol 1 (2017) 4-8.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Detoxification of Heavy Metal ion-contaminated Drinking Water by Green Technology - A Short Overview. Dipanwita Majumdar Current Green Chemistry 4 (2017) 38-44.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Functionalized Graphene-MnO2 nanocomposite in Fuel Cell Applications Dipanwita Majumdar Asian Journal of Science and Technology, 8(3),(2017) 4394-4398.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Ultrasound assisted formation of reduced graphene oxide-copper (II) oxide nanocomposite for energy storage applications Dipanwita Majumdar, Nirmal Baugh, and Swapan K Bhattacharya Colloids and Surfaces A: Physicochem. Eng. Aspects 512 (2017) 158-170.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>An Overview on Ruthenium Oxide Composites-Challenging Material for Energy Storage Applications D Majumdar Materials Science Research India 15(1) ,(2018) 30-40.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Anodic Oxidation of Butan-1-ol on Reduced Graphene Oxide-Supported-Pd-Ag-Nanoparticles/ Nanoalloy for Fuel Cell Applications Ankita Mahajan, Senjuti Banik, Dipanwita Majumdar and Swapan Kumar Bhattacharya ACS Omega, 4 (2019) 4658-4670.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Temperature Control Synthesis of Platinum Nanoparticle-Decorated Reduced Graphene Oxide for Electrocatalytic Oxidation of Methanol. Senjuti Banik; Ankita Mahajan; Apurba Ray; Dipanwita Majumdar; Sachindranath Das; Swapan Kumar Bhattacharya Flat Chem (2019) Flat Chem 16 (2019) 100111.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis and characterization of biopolymer based hybrid hydrogel nanocomposite and study of their electrochemical efficacy. Arindam Giri, Rahul Bhowmick, Chandraday Prodhan, Dipanwita Majumdar, Swapan Kumar Bhattacharya M Ali International Journal of Biological Macromolecules.123 (2019) 228-238.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Engineering of Gadolinium-Decorated Graphene Oxide Nanosheets for Multimodal Bioimaging and Drug Delivery. Nitya Chawda, Mainak Basu, Dipanwita Majumdar, Raju Poddar, Santosh Kumar Mahapatra, Indrani Banerjee, ACS OMEGA 4(2019) 12470-12479.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Optimization of physicochemical and dielectric features in the conductive copolymers of aniline and 2-aminophenol US Waware, AMS Hamouda, D Majumdar Polymer Bulletin 76 (11), 5603-5617.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review on V2O5 and Its Carbon-Based nanocomposites as Supercapacitor Electrode Materials. Dipanwita Majumdar, Manas Mandal and Swapan Kumar Bhattacharya ChemElectroChem 2019, 6, 1623. (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review of Recent Progress in Ruthenium Oxides based Composites for Supercapacitor Applications. Dipanwita Majumdar, Thandavarayan Maiyalagan, Zhongqing Jiang ChemElectroChem 6 (2019) 4343 (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Magnetic, pseudocapacitive and H2O2-electrosensing properties of self assembled superparamagnetic Co0.3Zn0.7Fe2O4 with enhanced saturation magnetization Rituparna Mondal, Koyel Sarkar, Subhrajyoti Dey, Dipanwita Majumdar, Swapan Bhattacharya, Pintu Sen, Sanjay Kumar, ACS Omega 47 (2019) 12632-12646.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis, characterization and physicochemical studies of copolymers of aniline and 3 nitroaniline Umesh Somaji Waware, A. M. S. Hamouda, Dipanwita Majumdar Polym. Bull. (2019). pp1-20 DOI: https://doi.org/10.1007/s00289-019-02957-y.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Journey from Supercapacitor to Supercapatteries: Recent advancements in electrochemical energy storage system, D Majumdar et al. Emergent Materials, Springer, ISSN : 2522-574X, https://doi.org/10.1007/s42247-020-00090-5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Review on Current Progress of MnO2-based Ternary Nanocomposites for Supercapacitor Applications, D Majumdar, Chemelectrochem, Wiley, doi: https://doi.org/10.1002/celc.202001371.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent advancements of copper oxide based nanomaterials for supercapacitor applications D Majumdar, S Ghosh Journal of Energy Storage, 101995, https://doi.org/10.1016/j.est.2020.101995.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent progress in copper sulfide based nanomaterials for high energy supercapacitor applications D Majumdar Journal of Electroanalytical Chemistry, https://doi.org/10.1016/j.jelechem.2020.114825.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Majumdar D. Role of MXenes/Polyaniline Nanocomposites in Fabricating Innovative Supercapacitor Technology. Advanced Energy Conversion Materials [Internet]. 2021 Nov. 20 [cited 2022 Jan. 13]; 3(1): 30-53. Available from: https://ojs.wiserpub.com/index.php/AECM/article/view/1148, https://doi.org/10.37256/aecm.3120221148.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Kinsuk Das, Dipanwita Majumdar, Prospects of MXenes/graphene nanocomposites for advanced supercapacitor applications, Journal of Electroanalytical Chemistry, Volume 905, 2022, 115973, ISSN 1572-6657, https://doi.org/10.1016/j.jelechem.2021.115973.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Room Temperature Synthesis of Perovskite Hydroxide, MnSn(OH)6: A Negative Electrode for Supercapacitor Authors Manas Mandal, Krishna Chattopadhyay, Malay Chakraborty, Wonjae Shin, Kamal Kanti Bera, Sujit Chatterjee, Akbar Hossain, Dipanwita Majumdar, Arup Gayen, Changwoon Nah, Swapan Kumar Bhattacharya Publication date 2022/11 Journal Electronic Materials Letters Volume 18 Issue 6 Pages 559-567 Publisher The Korean Institute of Metals and Materials.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Recent Developments of Methanol Electrooxidation Using Nickel-based Nanocatalysts Authors Dipanwita Majumdar, Swapan Kumar Bhattacharya Publication date 2022/10/26 Source ChemistrySelect Volume 7 Issue 40 Pages e202201807.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Graphitic Carbon Nitride (g-C3N4): A Proficient Electrode Material for Flexible Supercapacitors Authors Rudra Sarkar and Munmun Mondal & Dipanwita Majumdar Publication date 2023/12/7 Journal Advanced Materials Science and Technology Volume 5 Issue 2 Pages https://doi.org/10.37155/2717-526X-0502-.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Avijit Roy, Bedprakash Ray, Jaydeep Mondal and Abhijit Das</td>
|
||||||
|
<td>MGNREGA: Issues and Impacts-A Case Study In Kumra-Kashipur Gram Panchyat of North 24 Parganas, West Bengal</td>
|
||||||
|
<td>International Journal of Applied Social Science</td>
|
||||||
|
<td>Volume 5, Issue 5</td>
|
||||||
|
<td>588</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Bedprakash Ray & Abhijit Das</td>
|
||||||
|
<td>Techno-Economic Aspects of Vegetable Cultivation among the Rajbangshis in Purbapelkujote Village, Darjeeling, West Bengal</td>
|
||||||
|
<td>Nrtattv The Anthropology</td>
|
||||||
|
<td>Volume 10 & 11</td>
|
||||||
|
<td>92</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Bedprakash Ray</td>
|
||||||
|
<td>Deforestation: Issues and Impacts on Agriculture - an Ethnographic Study in the villages Chirudih, Purulia, West Bengal</td>
|
||||||
|
<td>North Bengal Anthropologist</td>
|
||||||
|
<td>Volume 3</td>
|
||||||
|
<td>121</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Bedprakash Ray & Abhijit Das</td>
|
||||||
|
<td>Techno-Economic Aspects of the Potters in Kittipur Village, North 24 Parganas, West Bengal</td>
|
||||||
|
<td>Bulletin of the Cultural Research Institute</td>
|
||||||
|
<td>Volume XXV 1&2</td>
|
||||||
|
<td>104</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-paper" role="tabpanel" aria-labelledby="v-pills-paper-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Paper Presentation</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Paper Title</th>
|
||||||
|
<th>Organizer</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2010</td>
|
||||||
|
<td>2010: Oral Presentation: on "Formation Dynamics of V- and Y-shaped Polyaniline nanowires". 4-5th Feb, 2010 (UGC sponsored National Seminar: EMERGING CONCERNS AND ADVANCES IN CHEMISTRY).</td>
|
||||||
|
<td>Lady Brabourne College (Kolkata)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Jan.2011</td>
|
||||||
|
<td>2011: Poster presentation: on "Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction". (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS).</td>
|
||||||
|
<td>Sree Gopal Banerjee College, Bagati, Mogra, Hooghly</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Jul.2013</td>
|
||||||
|
<td>2013: Oral Presentation: ON THE TOPIC "Nanopesticides: A Challenging Domain of Current Research" by D Majumdar 2013. (National Conference).</td>
|
||||||
|
<td>Panchkot Mahavidyalaya, Purulia</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Aug.2015</td>
|
||||||
|
<td>2015: Poster presentation: on "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Graphene Oxide-Copper (II) Oxide composites." on 1-2nd August, 2015. (National Conference/ National Symposium).</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.Dec.2015</td>
|
||||||
|
<td>2015: Poster presentation: NANOS 2015- International conference on the topic "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Reduced-Graphene Oxide-Copper (II) Oxide composites."</td>
|
||||||
|
<td>GITAM University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2016</td>
|
||||||
|
<td>2016: Poster presentation: on the topic "Role of beta-cyclodextrin-functionalized graphene oxide in removal of organic-dye water pollutants." (National Conference).</td>
|
||||||
|
<td>Dept of Chemistry, Burdwan University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.Mar.2016</td>
|
||||||
|
<td>2016: Poster presentation: ICMRA 2016- "Synthesis, Characterization and Electrochemical Study of Hydroxy-Functionalized Graphene/MnO2 nanocomposite" (International Conference).</td>
|
||||||
|
<td>CMR Technical Campus, Hyderabad</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.May.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Synthesis, Characterization and Electrochemical Studies of hydroxy functionalized Graphene-MnO2 Nanocomposite" Dipanwita Majumdar INTERNATIONAL CONFERENCE ON NANOTECHNOLOGY FOR BETTER LIVING (ICNBL-2016) (25/5/2016 -29/5/2016 NIT SRINAGAR AND IIT KANPUR.</td>
|
||||||
|
<td>NIT SRINAGAR, JAMMU AND KASHMIR</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Tuning of Charge Transport Properties in Polypyrrole Nanotubes" Dipanwita Majumdar UGC sponsored ONE DAY National Seminar 2016 RECENT ADVANCES IN LIFE SCIENCE IN THE LIGHT OF CHEMISTRY.</td>
|
||||||
|
<td>Bethune College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation on "Adsorption and Removal of Water Soluble Methylene Blue Dye by Beta-Cyclodextrin Functionalized Graphene Oxide" Dipanwita Majumdar UGC sponsored National Seminar 2016 ENTHRALLING FACETS OF MOLECULAR MANIFESTATION IN CHEMICAL SCIENCES.</td>
|
||||||
|
<td>Bidhannagar College, SALTLAKE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: Role of Sonochemically synthesized Beta-Cyclodextrin Functionalized Graphene Oxide in Adsorption of Water Soluble Brilliant Green Dye: Dipanwita Majumdar UGC sponsored National Seminar 2016 on RECENT TRENDS IN CHEMICAL RESEARCH.</td>
|
||||||
|
<td>Sarojini Naidu College for Women and Hiralal Mazumdar College for Women</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.Nov.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Adsorption and Removal of Soluble Methylene Blue Dye from Water by Sorbefacient Graphene Oxide" Dipanwita Majumdar UGC-Sponsored two day National Seminar on "MODERN TRENDS IN CHEMICAL SCIENCES".</td>
|
||||||
|
<td>Dept of Chemistry, Narasinha Dutt College and Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.Aug.2018</td>
|
||||||
|
<td>2018: Poster presentation: Recent Advancements of RuO2/Functionalized-Graphene Composites for Supercapacitor Applications By Dipanwita Majumdar at Recent Advances in Molecules and Materials: RA2M 2018' (International Conference).</td>
|
||||||
|
<td>School of Applied Science & Humanities, Haldia Institute of Technology, Haldia-721657 and Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Jan.2019</td>
|
||||||
|
<td>2019: Poster presentation: Supercapatteries: A Revolution in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference on Advances in Nanomaterials and Devices for Energy and Environment (ICAN-2019) (International Conference).</td>
|
||||||
|
<td>Advanced Materials and Nano-electronics Research Group of CNT Lab, in ABV-IIITM, Gwalior</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Mar.2019</td>
|
||||||
|
<td>2019: Oral presentation: Supercapacitors to Supercapatteries: Renaissance in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference of Emerging Technologies and Sustainable Development 2019 (ICETSD '19)(International Conference).</td>
|
||||||
|
<td>Government College of Engineering and Leather Technology, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08.Jan.2020</td>
|
||||||
|
<td>2020: Two-Day International Seminar on "Innovation, Expansion, Impacts and Challenges in Chemical and Biological Sciences" to be held on 8-9th January, 2020.</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Feb.2020</td>
|
||||||
|
<td>2020: National Symposium on Renewable Energy for Sustainable Future: Materials & Technology Development at Heritage Institute of Technology on 27/02/2020 on : Recent progress of supercapacitors.</td>
|
||||||
|
<td>Heritage Institute of Technology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>UGC Sponsored Special Summer School, 2015; (Equivalent to one Refresher Course)</td>
|
||||||
|
<td>Human Resource Development Centre (HRDC), University of Calcutta</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>UGC Sponsored Refresher Course</td>
|
||||||
|
<td>Academic Staff College, University of North Bengal</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>UGC Sponsored Refresher Course</td>
|
||||||
|
<td>Academic Staff College, University of North Bengal</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>UGC Sponsored Refresher Course</td>
|
||||||
|
<td>Academic Staff College, University of Calcutta</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>UGC Sponsored Orientation Program</td>
|
||||||
|
<td>Academic Staff College, University of Calcutta</td>
|
||||||
|
<td>2006</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Bedprakash Ray</td>
|
||||||
|
<td>The Pottery - A Cultural Heritage In New Style: Impacts of Globalization on Pottery: An Ethnographic Study in the villages Krittipur, Chaltaberia, and Ramkrishnapalli in North 24 Parganas, West Bengal</td>
|
||||||
|
<td>UGC Sponsored National Seminar on ‘Anthropology and Society’</td>
|
||||||
|
<td>Department of Anthropology, University of North Bengal</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Bedprakash Ray</td>
|
||||||
|
<td>In Search of New Occupation: An Ethnographic Study Among the Potters of Kittipur Village, North 24 Parganas, West Bengal</td>
|
||||||
|
<td>UGC Sponsored National Seminar on “New Paradigms In Anthropological Research”</td>
|
||||||
|
<td>Department of Anthropology, University of North Bengal</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Bedprakash Ray</td>
|
||||||
|
<td>Impacts of Urbanization on Pottery: An Ethnographic Study in North 24 Parganas</td>
|
||||||
|
<td>UGC Sponsored National Seminar on “Anthropology In the 21st Century”</td>
|
||||||
|
<td>Department of Anthropology, University of North Bengal</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Bedprakash Ray</td>
|
||||||
|
<td>Impacts of Urbanization on Pottery: An Ethnographic Study in North 24 Parganas</td>
|
||||||
|
<td>International Conference on Mega-Urbanization and Human Rights</td>
|
||||||
|
<td>Department of Anthropology, West Bengal State University</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Course</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>ANTPCOR02T, ANTPCOR03T, ANTPCOR04P, ANTPCOR05T, ANTPCOR07T, ANTPCOR08T, ANTPCOR10P, ANTPCOR11T, ANTPCOR12T, CC-15 (DISSERTATION), ANTPDSE2B, ANTPDSE-3B</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
<td>ANTACOR10T, ANTADSE02P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>4-UG Programme</td>
|
||||||
|
<td>ANTDSC101T, ANTDSC101P, ANTDSC202T, ANTDSC202P, ANTDSC303T, ANTDSC303P</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Associate NCC Officer</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Coordinator, NSOU Study Centre, Sree Chaitanya College, Habra</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Member UG BOS for Anthropology, WBSU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Life Member, INCAA</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-award" role="tabpanel" aria-labelledby="v-pills-award-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Award Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Qualified in nationally competitive examination, JAM -2005, conducted by Indian Institute of Technology (IIT), All India Rank-162</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, CSIR-UGC NET - 2006, conducted jointly by Council of Scientific and Industrial Research (CSIR) and University Grants Commission (UGC), Govt. of India, 2006, December for lectureship and research fellowship. Selected for SPM interview under CSIR.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2006, conducted by Indian Institute of Technology (IIT), All India Rank-281</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2007, conducted by Indian Institute of Technology (IIT), All India Rank-12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Poster award for the presentation: on “Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction”. (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS At Sree Gopal Banerjee College, Bagati, Mogra, Hooghly, West Bengal)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>2nd best poster presentation at International Conference on Materials Research and Applications (ICMRA-2016) from 11-13 March 2016 @ CMR TECHNICAL CAMPUS, Kandlakoya (V), Medchal (M), RR Dist, Telangana, India-501401, (Approved by AICTE, New Delhi, Affiliated to JNTU, Hyderabad.)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>3rd Young Women Scientist paper presentation at International Conference on Nanotechnology for Better Living, 2016 jointly organized by IIT Kanpur and NIT Srinagar at Srinagar, J&K, India on 25-29th May, 2016.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Research Excellence Award-2021, InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Young Researcher Award-2021 InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Women Researcher Award in the International Scientist Awards on Engineering, Science and Medicine by VDGOOD Professional Association</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Asia’s Science, Technology and Research Awards 2023 (ASTRA 2023) Outstanding Researcher Award in Materials Science</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-hand" role="tabpanel" aria-labelledby="v-pills-hand-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Membership</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
<th>Membership</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Moderator and Question Paper Setters of UG and PG Level CHEMISTRY COURSES IN various reputed Universities in India.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life Member at Indian Physical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life member of Indian Association for the Cultivation of Science, Jadavpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Reviewer of many reputed International peer-reviewed journals (Springer, Elsevier, Wiley)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>InSc Professional Member, Institute of Scholars, Department of Awards, Muddhinapalya Bengaluru-560091, Karnataka, India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Editorial Board Member of Peer-reviewed International Journal: Materials Science Research India for 2017 and 2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
615
faculty/bhaswati-haldar-chowdhury.php
Normal file
615
faculty/bhaswati-haldar-chowdhury.php
Normal file
@@ -0,0 +1,615 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Bhaswati Haldar Chowdhury</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT 2</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc(Honours), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:bhaswati.anthro@sreechaitanyacollege.ac.in" class="fw-bold">bhaswati.anthro@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9800524870</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Anthropology (Social) </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-journal-tab" data-bs-toggle="pill" data-bs-target="#v-pills-journal" type="button" role="tab" aria-controls="v-pills-journal" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/news.svg" alt="" />Journal Publication </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-paper-tab" data-bs-toggle="pill" data-bs-target="#v-pills-paper" type="button" role="tab" aria-controls="v-pills-paper" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/paper.svg" alt="" />Paper Presentation </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-award-tab" data-bs-toggle="pill" data-bs-target="#v-pills-award" type="button" role="tab" aria-controls="v-pills-award" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button> -->
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-hand-tab" data-bs-toggle="pill" data-bs-target="#v-pills-hand" type="button" role="tab" aria-controls="v-pills-hand" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/hand.svg" alt="" />Membership </button> -->
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>SL NO.</th>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>Mark</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>1993</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>61%</td>
|
||||||
|
<td>Visva Bharati University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>B.Ed</td>
|
||||||
|
<td>1995</td>
|
||||||
|
<td>Bio Science</td>
|
||||||
|
<td>57%</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-journal" role="tabpanel" aria-labelledby="v-pills-journal-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">JOURNAL PUBLICATION</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Published On</th>
|
||||||
|
<th>Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Observation of microwave plasmons in one-dimensional conjugated polymer chain. B Mondal, D Majumdar and S K Saha Appl. Phys. Lett. 94 (2009) 183109.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mechanism of Ultrasonic Energy-Assisted Formation of V-, Y-Shaped Nano-Structures in Conjugated Polymers D Majumdar R P Maity, S Basu, and S K Saha J. Nano Sc. & Nanotech. 9 (2009) 6896-6901.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Graphene quantum sheet: A new material for spintronic application. S K Saha, M Baskey, D Majumdar. Adv. Mater. 22 (2010) 5531.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Observation of ferroelectric response in conjugated polymer nanotubes. D Majumdar and S K Saha Appl. Phys. Lett., 96 (2010) 183113.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Poly(3-hexylthiophene) nanotubes with superior electronic and optical properties. D Majumdar and S K Saha Chem. Phys. Lett., 489 (2010) 219.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Synthesis of single crystalline micron-sized rectangular silver bar. B Mondal, D Majumdar and S K Saha, J. Mater. Research. 25 (2010) 383.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Nanotechnology: Its current scope and prospect Dipanwita Majumdar Acad. J Aureole Vol 3(2), (2011) 114-119.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Epitaxial growth of crystalline polyaniline on reduced graphene oxide D Majumdar M Baskey, S K Saha Macromol. Rapid Commun. 32 (2011) 1277.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Graphene and its composites as supercaps. Dipanwita Majumdar Acad. J Aureole 4, (2013) 11-16.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Reduced Graphene Oxide: An Efficient Supercapacitor Material. Dipanwita Majumdar Academic J. Aureole, 5 (2014) 42-46.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Graphene-MnO2 Composite as Electrocatalyst for Oxygen Reduction Reactions. Dipanwita Majumdar Academic J. Aureole, 6&7(1) (2015-16) 31-37.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Charge Transport in Polypyrrole Nanotubes. Dipanwita Majumdar, S.K. Saha J. Nanosci. Nanotechnol. 15 (2015) 9975-9981.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Graphene-Polyaniline nanocomposites as Proficient Energy Storage Material-An Overview. Dipanwita Majumdar Innovative Energy & Research 5 (2016) 2.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Sonochemically Synthesized Beta-Cyclodextrin Functionalized Graphene Oxide and its Efficient Role in Adsorption of Water Soluble Brilliant Green Dye. Dipanwita Majumdar J Environ Anal Toxicol 6 (2016) 5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Hydroxy functionalized Graphene: A Proficient Energy Storage Material, Dipanwita Majumdar and Sujata Pal, J Fundam. Renewable Energy Appl., 6 (2016) 209.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Microwave-assisted synthesis of Mn2O3 porous balls as bifunctional electrocatalyst for oxygen reduction and evolution reaction Dipanwita Majumdar, et al Catal. Sci. Technol., 6(5) (2016) 1417-1429.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Synthesis, characterization and electrochemical study of hydroxy-functionalized graphene/MnO2 nanocomposite D Majumdar, SK Bhattacharya Materials Today: Proceedings 3 (10), 3872-3877.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Sonochemically synthesized hydroxy-functionalized graphene-MnO2 nanocomposite for supercapacitor applications. Dipanwita Majumdar, and Swapan K Bhattacharya J Appl Electrochem 47 (2017) 789-801.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Proficiency of graphene oxide in adsorption and removal of methylene blue from water: An overview. Dipanwita Majumdar J Environ Chem Toxicol 1 (2017) 4-8.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Detoxification of Heavy Metal ion-contaminated Drinking Water by Green Technology - A Short Overview. Dipanwita Majumdar Current Green Chemistry 4 (2017) 38-44.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Functionalized Graphene-MnO2 nanocomposite in Fuel Cell Applications Dipanwita Majumdar Asian Journal of Science and Technology, 8(3),(2017) 4394-4398.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Ultrasound assisted formation of reduced graphene oxide-copper (II) oxide nanocomposite for energy storage applications Dipanwita Majumdar, Nirmal Baugh, and Swapan K Bhattacharya Colloids and Surfaces A: Physicochem. Eng. Aspects 512 (2017) 158-170.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>An Overview on Ruthenium Oxide Composites-Challenging Material for Energy Storage Applications D Majumdar Materials Science Research India 15(1) ,(2018) 30-40.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Anodic Oxidation of Butan-1-ol on Reduced Graphene Oxide-Supported-Pd-Ag-Nanoparticles/ Nanoalloy for Fuel Cell Applications Ankita Mahajan, Senjuti Banik, Dipanwita Majumdar and Swapan Kumar Bhattacharya ACS Omega, 4 (2019) 4658-4670.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Temperature Control Synthesis of Platinum Nanoparticle-Decorated Reduced Graphene Oxide for Electrocatalytic Oxidation of Methanol. Senjuti Banik; Ankita Mahajan; Apurba Ray; Dipanwita Majumdar; Sachindranath Das; Swapan Kumar Bhattacharya Flat Chem (2019) Flat Chem 16 (2019) 100111.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis and characterization of biopolymer based hybrid hydrogel nanocomposite and study of their electrochemical efficacy. Arindam Giri, Rahul Bhowmick, Chandraday Prodhan, Dipanwita Majumdar, Swapan Kumar Bhattacharya M Ali International Journal of Biological Macromolecules.123 (2019) 228-238.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Engineering of Gadolinium-Decorated Graphene Oxide Nanosheets for Multimodal Bioimaging and Drug Delivery. Nitya Chawda, Mainak Basu, Dipanwita Majumdar, Raju Poddar, Santosh Kumar Mahapatra, Indrani Banerjee, ACS OMEGA 4(2019) 12470-12479.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Optimization of physicochemical and dielectric features in the conductive copolymers of aniline and 2-aminophenol US Waware, AMS Hamouda, D Majumdar Polymer Bulletin 76 (11), 5603-5617.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review on V2O5 and Its Carbon-Based nanocomposites as Supercapacitor Electrode Materials. Dipanwita Majumdar, Manas Mandal and Swapan Kumar Bhattacharya ChemElectroChem 2019, 6, 1623. (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review of Recent Progress in Ruthenium Oxides based Composites for Supercapacitor Applications. Dipanwita Majumdar, Thandavarayan Maiyalagan, Zhongqing Jiang ChemElectroChem 6 (2019) 4343 (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Magnetic, pseudocapacitive and H2O2-electrosensing properties of self assembled superparamagnetic Co0.3Zn0.7Fe2O4 with enhanced saturation magnetization Rituparna Mondal, Koyel Sarkar, Subhrajyoti Dey, Dipanwita Majumdar, Swapan Bhattacharya, Pintu Sen, Sanjay Kumar, ACS Omega 47 (2019) 12632-12646.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis, characterization and physicochemical studies of copolymers of aniline and 3 nitroaniline Umesh Somaji Waware, A. M. S. Hamouda, Dipanwita Majumdar Polym. Bull. (2019). pp1-20 DOI: https://doi.org/10.1007/s00289-019-02957-y.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Journey from Supercapacitor to Supercapatteries: Recent advancements in electrochemical energy storage system, D Majumdar et al. Emergent Materials, Springer, ISSN : 2522-574X, https://doi.org/10.1007/s42247-020-00090-5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Review on Current Progress of MnO2-based Ternary Nanocomposites for Supercapacitor Applications, D Majumdar, Chemelectrochem, Wiley, doi: https://doi.org/10.1002/celc.202001371.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent advancements of copper oxide based nanomaterials for supercapacitor applications D Majumdar, S Ghosh Journal of Energy Storage, 101995, https://doi.org/10.1016/j.est.2020.101995.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent progress in copper sulfide based nanomaterials for high energy supercapacitor applications D Majumdar Journal of Electroanalytical Chemistry, https://doi.org/10.1016/j.jelechem.2020.114825.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Majumdar D. Role of MXenes/Polyaniline Nanocomposites in Fabricating Innovative Supercapacitor Technology. Advanced Energy Conversion Materials [Internet]. 2021 Nov. 20 [cited 2022 Jan. 13]; 3(1): 30-53. Available from: https://ojs.wiserpub.com/index.php/AECM/article/view/1148, https://doi.org/10.37256/aecm.3120221148.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Kinsuk Das, Dipanwita Majumdar, Prospects of MXenes/graphene nanocomposites for advanced supercapacitor applications, Journal of Electroanalytical Chemistry, Volume 905, 2022, 115973, ISSN 1572-6657, https://doi.org/10.1016/j.jelechem.2021.115973.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Room Temperature Synthesis of Perovskite Hydroxide, MnSn(OH)6: A Negative Electrode for Supercapacitor Authors Manas Mandal, Krishna Chattopadhyay, Malay Chakraborty, Wonjae Shin, Kamal Kanti Bera, Sujit Chatterjee, Akbar Hossain, Dipanwita Majumdar, Arup Gayen, Changwoon Nah, Swapan Kumar Bhattacharya Publication date 2022/11 Journal Electronic Materials Letters Volume 18 Issue 6 Pages 559-567 Publisher The Korean Institute of Metals and Materials.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Recent Developments of Methanol Electrooxidation Using Nickel-based Nanocatalysts Authors Dipanwita Majumdar, Swapan Kumar Bhattacharya Publication date 2022/10/26 Source ChemistrySelect Volume 7 Issue 40 Pages e202201807.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Graphitic Carbon Nitride (g-C3N4): A Proficient Electrode Material for Flexible Supercapacitors Authors Rudra Sarkar and Munmun Mondal & Dipanwita Majumdar Publication date 2023/12/7 Journal Advanced Materials Science and Technology Volume 5 Issue 2 Pages https://doi.org/10.37155/2717-526X-0502-.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-paper" role="tabpanel" aria-labelledby="v-pills-paper-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Paper Presentation</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Paper Title</th>
|
||||||
|
<th>Organizer</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2010</td>
|
||||||
|
<td>2010: Oral Presentation: on "Formation Dynamics of V- and Y-shaped Polyaniline nanowires". 4-5th Feb, 2010 (UGC sponsored National Seminar: EMERGING CONCERNS AND ADVANCES IN CHEMISTRY).</td>
|
||||||
|
<td>Lady Brabourne College (Kolkata)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Jan.2011</td>
|
||||||
|
<td>2011: Poster presentation: on "Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction". (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS).</td>
|
||||||
|
<td>Sree Gopal Banerjee College, Bagati, Mogra, Hooghly</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Jul.2013</td>
|
||||||
|
<td>2013: Oral Presentation: ON THE TOPIC "Nanopesticides: A Challenging Domain of Current Research" by D Majumdar 2013. (National Conference).</td>
|
||||||
|
<td>Panchkot Mahavidyalaya, Purulia</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Aug.2015</td>
|
||||||
|
<td>2015: Poster presentation: on "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Graphene Oxide-Copper (II) Oxide composites." on 1-2nd August, 2015. (National Conference/ National Symposium).</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.Dec.2015</td>
|
||||||
|
<td>2015: Poster presentation: NANOS 2015- International conference on the topic "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Reduced-Graphene Oxide-Copper (II) Oxide composites."</td>
|
||||||
|
<td>GITAM University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2016</td>
|
||||||
|
<td>2016: Poster presentation: on the topic "Role of beta-cyclodextrin-functionalized graphene oxide in removal of organic-dye water pollutants." (National Conference).</td>
|
||||||
|
<td>Dept of Chemistry, Burdwan University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.Mar.2016</td>
|
||||||
|
<td>2016: Poster presentation: ICMRA 2016- "Synthesis, Characterization and Electrochemical Study of Hydroxy-Functionalized Graphene/MnO2 nanocomposite" (International Conference).</td>
|
||||||
|
<td>CMR Technical Campus, Hyderabad</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.May.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Synthesis, Characterization and Electrochemical Studies of hydroxy functionalized Graphene-MnO2 Nanocomposite" Dipanwita Majumdar INTERNATIONAL CONFERENCE ON NANOTECHNOLOGY FOR BETTER LIVING (ICNBL-2016) (25/5/2016 -29/5/2016 NIT SRINAGAR AND IIT KANPUR.</td>
|
||||||
|
<td>NIT SRINAGAR, JAMMU AND KASHMIR</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Tuning of Charge Transport Properties in Polypyrrole Nanotubes" Dipanwita Majumdar UGC sponsored ONE DAY National Seminar 2016 RECENT ADVANCES IN LIFE SCIENCE IN THE LIGHT OF CHEMISTRY.</td>
|
||||||
|
<td>Bethune College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation on "Adsorption and Removal of Water Soluble Methylene Blue Dye by Beta-Cyclodextrin Functionalized Graphene Oxide" Dipanwita Majumdar UGC sponsored National Seminar 2016 ENTHRALLING FACETS OF MOLECULAR MANIFESTATION IN CHEMICAL SCIENCES.</td>
|
||||||
|
<td>Bidhannagar College, SALTLAKE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: Role of Sonochemically synthesized Beta-Cyclodextrin Functionalized Graphene Oxide in Adsorption of Water Soluble Brilliant Green Dye: Dipanwita Majumdar UGC sponsored National Seminar 2016 on RECENT TRENDS IN CHEMICAL RESEARCH.</td>
|
||||||
|
<td>Sarojini Naidu College for Women and Hiralal Mazumdar College for Women</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.Nov.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Adsorption and Removal of Soluble Methylene Blue Dye from Water by Sorbefacient Graphene Oxide" Dipanwita Majumdar UGC-Sponsored two day National Seminar on "MODERN TRENDS IN CHEMICAL SCIENCES".</td>
|
||||||
|
<td>Dept of Chemistry, Narasinha Dutt College and Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.Aug.2018</td>
|
||||||
|
<td>2018: Poster presentation: Recent Advancements of RuO2/Functionalized-Graphene Composites for Supercapacitor Applications By Dipanwita Majumdar at Recent Advances in Molecules and Materials: RA2M 2018' (International Conference).</td>
|
||||||
|
<td>School of Applied Science & Humanities, Haldia Institute of Technology, Haldia-721657 and Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Jan.2019</td>
|
||||||
|
<td>2019: Poster presentation: Supercapatteries: A Revolution in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference on Advances in Nanomaterials and Devices for Energy and Environment (ICAN-2019) (International Conference).</td>
|
||||||
|
<td>Advanced Materials and Nano-electronics Research Group of CNT Lab, in ABV-IIITM, Gwalior</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Mar.2019</td>
|
||||||
|
<td>2019: Oral presentation: Supercapacitors to Supercapatteries: Renaissance in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference of Emerging Technologies and Sustainable Development 2019 (ICETSD '19)(International Conference).</td>
|
||||||
|
<td>Government College of Engineering and Leather Technology, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08.Jan.2020</td>
|
||||||
|
<td>2020: Two-Day International Seminar on "Innovation, Expansion, Impacts and Challenges in Chemical and Biological Sciences" to be held on 8-9th January, 2020.</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Feb.2020</td>
|
||||||
|
<td>2020: National Symposium on Renewable Energy for Sustainable Future: Materials & Technology Development at Heritage Institute of Technology on 27/02/2020 on : Recent progress of supercapacitors.</td>
|
||||||
|
<td>Heritage Institute of Technology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code) taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ANTMIN01T, ANTMIN01P, ANTMIN02T, ANTMIN02P, ANTMIN03T, ANTGCORO1T, ANTGCORO1P, ANTGCORO2T, ANTGCORO3T, ANTGCORO4T, ANTGDSC02T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-award" role="tabpanel" aria-labelledby="v-pills-award-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Award Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Qualified in nationally competitive examination, JAM -2005, conducted by Indian Institute of Technology (IIT), All India Rank-162</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, CSIR-UGC NET - 2006, conducted jointly by Council of Scientific and Industrial Research (CSIR) and University Grants Commission (UGC), Govt. of India, 2006, December for lectureship and research fellowship. Selected for SPM interview under CSIR.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2006, conducted by Indian Institute of Technology (IIT), All India Rank-281</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2007, conducted by Indian Institute of Technology (IIT), All India Rank-12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Poster award for the presentation: on “Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction”. (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS At Sree Gopal Banerjee College, Bagati, Mogra, Hooghly, West Bengal)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>2nd best poster presentation at International Conference on Materials Research and Applications (ICMRA-2016) from 11-13 March 2016 @ CMR TECHNICAL CAMPUS, Kandlakoya (V), Medchal (M), RR Dist, Telangana, India-501401, (Approved by AICTE, New Delhi, Affiliated to JNTU, Hyderabad.)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>3rd Young Women Scientist paper presentation at International Conference on Nanotechnology for Better Living, 2016 jointly organized by IIT Kanpur and NIT Srinagar at Srinagar, J&K, India on 25-29th May, 2016.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Research Excellence Award-2021, InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Young Researcher Award-2021 InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Women Researcher Award in the International Scientist Awards on Engineering, Science and Medicine by VDGOOD Professional Association</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Asia’s Science, Technology and Research Awards 2023 (ASTRA 2023) Outstanding Researcher Award in Materials Science</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-hand" role="tabpanel" aria-labelledby="v-pills-hand-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Membership</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
<th>Membership</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Moderator and Question Paper Setters of UG and PG Level CHEMISTRY COURSES IN various reputed Universities in India.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life Member at Indian Physical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life member of Indian Association for the Cultivation of Science, Jadavpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Reviewer of many reputed International peer-reviewed journals (Springer, Elsevier, Wiley)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>InSc Professional Member, Institute of Scholars, Department of Awards, Muddhinapalya Bengaluru-560091, Karnataka, India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Editorial Board Member of Peer-reviewed International Journal: Materials Science Research India for 2017 and 2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
286
faculty/biswajit-ghosh.php
Normal file
286
faculty/biswajit-ghosh.php
Normal file
@@ -0,0 +1,286 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Biswajit Ghosh</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-II</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:bghoshphys@scc.ac.in" class="fw-bold">bghoshphys@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Astrophysics </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest:</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B. Sc</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
<td>WBSU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M. SC</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
<td>WBSU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B. Ed</td>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>WBUTTEPA</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SACT II</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Continue</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>PHSMIN101T + PHSMIN101P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>PHSMIN202T + PHSMIN202P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>PHSMIN303T + PHSMIN303P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>PHSCOR404T + PHSCOR404P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>PHSGDSE02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>PHSGDSE04T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
243
faculty/buddhadeb-maity.php
Normal file
243
faculty/buddhadeb-maity.php
Normal file
@@ -0,0 +1,243 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">BUDDHADEB MAITY</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-II</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:buddhadevmaity1982@gmail.com" class="fw-bold">buddhadevmaity1982@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9800509774</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: INORGANIC</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc (H)</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>VU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>GGU</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Year and Page</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
317
faculty/devdutta-sarkar.php
Normal file
317
faculty/devdutta-sarkar.php
Normal file
@@ -0,0 +1,317 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Devdutta Sarkar</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-I</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:devdutta.phy@sreechaitanyacollege.ac.in" class="fw-bold">devdutta.phy@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Condensed Matter Physics </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Quantum Mechanics,Solid State Physics, Quantum Computing.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Guest Teacher</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>25.08.2018</td>
|
||||||
|
<td>31.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT -II (State Aided College Teacher, Category-II)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.01.2020</td>
|
||||||
|
<td>26.02.2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>SACT-I (State Aided College Teacher, Category-I)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>27.02.2023</td>
|
||||||
|
<td>Till Now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Level</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Mechanics (P) Minor1/CORE1 PHSMIN101T+ PHSMIN101P/ PHSCOR101T+ PHSCOR101P</td>
|
||||||
|
<td>NEP Sem I - Minor</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Basic Instrumentation Skills SEC-1 (3) PHSHSE101M</td>
|
||||||
|
<td>NEP Sem I - SEC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Electricity and Magnetism (P) Minor2/CORE2 PHSMIN202T+ PHSMIN202P/ PHSCOR202T+ PHSCOR202P</td>
|
||||||
|
<td>NEP Sem II - Minor</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Basic Instrumentation Skills SEC-1 (3) PHSHSE202M</td>
|
||||||
|
<td>NEP Sem II - SEC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Fluids and Waves (P) Minor3/CORE3 PHSMIN303T+ PHSMIN303P/ PHSCOR303T+ PHSCOR303P</td>
|
||||||
|
<td>NEP Sem III - Minor</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Basic Instrumentation Skills SEC-1 (3) PHSGSE301M PHSMSE101M</td>
|
||||||
|
<td>NEP Sem III - SEC-3</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Mechanics PHSGCOR01T | Mechanics Lab PHSGCOR01P</td>
|
||||||
|
<td>CBCS Sem I - Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Electricity and Magnetism PHSGCOR02T | Electricity and Magnetism Lab PHSGCOR02P</td>
|
||||||
|
<td>CBCS Sem II - Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Thermal Physics and Statistical Mechanics PHSGCOR03T | Thermal Physics and Statistical Mechanics Lab PHSGCOR03P</td>
|
||||||
|
<td>CBCS Sem III - Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Waves and Optics PHSGCOR04T | Waves and Optics Lab PHSGCOR04P</td>
|
||||||
|
<td>CBCS Sem IV - Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Perspectives of Modern Physics PHSGDSE02T</td>
|
||||||
|
<td>CBCS Sem V - DSE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Nuclear and Particle Physics PHSGDSE04T</td>
|
||||||
|
<td>CBCS Sem VI - DSE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>SEC Paper</td>
|
||||||
|
<td>SEC</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
742
faculty/dr-amarjeet-kaur.php
Normal file
742
faculty/dr-amarjeet-kaur.php
Normal file
@@ -0,0 +1,742 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Amarjeet Kaur</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Associate Professor in Botany</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc. (Honours), M.Sc. Ph.d.</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:kaur.bot@sreechaitanyacollege.ac.in" class="fw-bold">kaur.bot@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;">Aeromycology</li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Plant Physiology and Biochemistry</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-journal-tab" data-bs-toggle="pill" data-bs-target="#v-pills-journal" type="button" role="tab" aria-controls="v-pills-journal" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/news.svg" alt="" />Journal Publication </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-paper-tab" data-bs-toggle="pill" data-bs-target="#v-pills-paper" type="button" role="tab" aria-controls="v-pills-paper" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/paper.svg" alt="" />Paper Presentation </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-award-tab" data-bs-toggle="pill" data-bs-target="#v-pills-award" type="button" role="tab" aria-controls="v-pills-award" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button> -->
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-hand-tab" data-bs-toggle="pill" data-bs-target="#v-pills-hand" type="button" role="tab" aria-controls="v-pills-hand" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/hand.svg" alt="" />Membership </button> -->
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>SL NO.</th>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>B.Sc. (Honours)</td>
|
||||||
|
<td>2000</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>University of Burdwan</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2002</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>University of Burdwan</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Part-time Lecturer</td>
|
||||||
|
<td>Raniganj Girls’ College</td>
|
||||||
|
<td>01.09.2003</td>
|
||||||
|
<td>25.11.2003</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Full-time Contractual Lecturer</td>
|
||||||
|
<td>Suri Vidyasagar College</td>
|
||||||
|
<td>01.12.2003</td>
|
||||||
|
<td>01.12.2006</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Associate Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>04.12.2006</td>
|
||||||
|
<td>Continuing</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-journal" role="tabpanel" aria-labelledby="v-pills-journal-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">JOURNAL PUBLICATION</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Published On</th>
|
||||||
|
<th>Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Observation of microwave plasmons in one-dimensional conjugated polymer chain. B Mondal, D Majumdar and S K Saha Appl. Phys. Lett. 94 (2009) 183109.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mechanism of Ultrasonic Energy-Assisted Formation of V-, Y-Shaped Nano-Structures in Conjugated Polymers D Majumdar R P Maity, S Basu, and S K Saha J. Nano Sc. & Nanotech. 9 (2009) 6896-6901.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Graphene quantum sheet: A new material for spintronic application. S K Saha, M Baskey, D Majumdar. Adv. Mater. 22 (2010) 5531.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Observation of ferroelectric response in conjugated polymer nanotubes. D Majumdar and S K Saha Appl. Phys. Lett., 96 (2010) 183113.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Poly(3-hexylthiophene) nanotubes with superior electronic and optical properties. D Majumdar and S K Saha Chem. Phys. Lett., 489 (2010) 219.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Synthesis of single crystalline micron-sized rectangular silver bar. B Mondal, D Majumdar and S K Saha, J. Mater. Research. 25 (2010) 383.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Nanotechnology: Its current scope and prospect Dipanwita Majumdar Acad. J Aureole Vol 3(2), (2011) 114-119.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Epitaxial growth of crystalline polyaniline on reduced graphene oxide D Majumdar M Baskey, S K Saha Macromol. Rapid Commun. 32 (2011) 1277.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Graphene and its composites as supercaps. Dipanwita Majumdar Acad. J Aureole 4, (2013) 11-16.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Reduced Graphene Oxide: An Efficient Supercapacitor Material. Dipanwita Majumdar Academic J. Aureole, 5 (2014) 42-46.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Graphene-MnO2 Composite as Electrocatalyst for Oxygen Reduction Reactions. Dipanwita Majumdar Academic J. Aureole, 6&7(1) (2015-16) 31-37.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Charge Transport in Polypyrrole Nanotubes. Dipanwita Majumdar, S.K. Saha J. Nanosci. Nanotechnol. 15 (2015) 9975-9981.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Graphene-Polyaniline nanocomposites as Proficient Energy Storage Material-An Overview. Dipanwita Majumdar Innovative Energy & Research 5 (2016) 2.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Sonochemically Synthesized Beta-Cyclodextrin Functionalized Graphene Oxide and its Efficient Role in Adsorption of Water Soluble Brilliant Green Dye. Dipanwita Majumdar J Environ Anal Toxicol 6 (2016) 5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Hydroxy functionalized Graphene: A Proficient Energy Storage Material, Dipanwita Majumdar and Sujata Pal, J Fundam. Renewable Energy Appl., 6 (2016) 209.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Microwave-assisted synthesis of Mn2O3 porous balls as bifunctional electrocatalyst for oxygen reduction and evolution reaction Dipanwita Majumdar, et al Catal. Sci. Technol., 6(5) (2016) 1417-1429.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Synthesis, characterization and electrochemical study of hydroxy-functionalized graphene/MnO2 nanocomposite D Majumdar, SK Bhattacharya Materials Today: Proceedings 3 (10), 3872-3877.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Sonochemically synthesized hydroxy-functionalized graphene-MnO2 nanocomposite for supercapacitor applications. Dipanwita Majumdar, and Swapan K Bhattacharya J Appl Electrochem 47 (2017) 789-801.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Proficiency of graphene oxide in adsorption and removal of methylene blue from water: An overview. Dipanwita Majumdar J Environ Chem Toxicol 1 (2017) 4-8.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Detoxification of Heavy Metal ion-contaminated Drinking Water by Green Technology - A Short Overview. Dipanwita Majumdar Current Green Chemistry 4 (2017) 38-44.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Functionalized Graphene-MnO2 nanocomposite in Fuel Cell Applications Dipanwita Majumdar Asian Journal of Science and Technology, 8(3),(2017) 4394-4398.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Ultrasound assisted formation of reduced graphene oxide-copper (II) oxide nanocomposite for energy storage applications Dipanwita Majumdar, Nirmal Baugh, and Swapan K Bhattacharya Colloids and Surfaces A: Physicochem. Eng. Aspects 512 (2017) 158-170.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>An Overview on Ruthenium Oxide Composites-Challenging Material for Energy Storage Applications D Majumdar Materials Science Research India 15(1) ,(2018) 30-40.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Anodic Oxidation of Butan-1-ol on Reduced Graphene Oxide-Supported-Pd-Ag-Nanoparticles/ Nanoalloy for Fuel Cell Applications Ankita Mahajan, Senjuti Banik, Dipanwita Majumdar and Swapan Kumar Bhattacharya ACS Omega, 4 (2019) 4658-4670.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Temperature Control Synthesis of Platinum Nanoparticle-Decorated Reduced Graphene Oxide for Electrocatalytic Oxidation of Methanol. Senjuti Banik; Ankita Mahajan; Apurba Ray; Dipanwita Majumdar; Sachindranath Das; Swapan Kumar Bhattacharya Flat Chem (2019) Flat Chem 16 (2019) 100111.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis and characterization of biopolymer based hybrid hydrogel nanocomposite and study of their electrochemical efficacy. Arindam Giri, Rahul Bhowmick, Chandraday Prodhan, Dipanwita Majumdar, Swapan Kumar Bhattacharya M Ali International Journal of Biological Macromolecules.123 (2019) 228-238.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Engineering of Gadolinium-Decorated Graphene Oxide Nanosheets for Multimodal Bioimaging and Drug Delivery. Nitya Chawda, Mainak Basu, Dipanwita Majumdar, Raju Poddar, Santosh Kumar Mahapatra, Indrani Banerjee, ACS OMEGA 4(2019) 12470-12479.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Optimization of physicochemical and dielectric features in the conductive copolymers of aniline and 2-aminophenol US Waware, AMS Hamouda, D Majumdar Polymer Bulletin 76 (11), 5603-5617.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review on V2O5 and Its Carbon-Based nanocomposites as Supercapacitor Electrode Materials. Dipanwita Majumdar, Manas Mandal and Swapan Kumar Bhattacharya ChemElectroChem 2019, 6, 1623. (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review of Recent Progress in Ruthenium Oxides based Composites for Supercapacitor Applications. Dipanwita Majumdar, Thandavarayan Maiyalagan, Zhongqing Jiang ChemElectroChem 6 (2019) 4343 (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Magnetic, pseudocapacitive and H2O2-electrosensing properties of self assembled superparamagnetic Co0.3Zn0.7Fe2O4 with enhanced saturation magnetization Rituparna Mondal, Koyel Sarkar, Subhrajyoti Dey, Dipanwita Majumdar, Swapan Bhattacharya, Pintu Sen, Sanjay Kumar, ACS Omega 47 (2019) 12632-12646.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis, characterization and physicochemical studies of copolymers of aniline and 3 nitroaniline Umesh Somaji Waware, A. M. S. Hamouda, Dipanwita Majumdar Polym. Bull. (2019). pp1-20 DOI: https://doi.org/10.1007/s00289-019-02957-y.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Journey from Supercapacitor to Supercapatteries: Recent advancements in electrochemical energy storage system, D Majumdar et al. Emergent Materials, Springer, ISSN : 2522-574X, https://doi.org/10.1007/s42247-020-00090-5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Review on Current Progress of MnO2-based Ternary Nanocomposites for Supercapacitor Applications, D Majumdar, Chemelectrochem, Wiley, doi: https://doi.org/10.1002/celc.202001371.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent advancements of copper oxide based nanomaterials for supercapacitor applications D Majumdar, S Ghosh Journal of Energy Storage, 101995, https://doi.org/10.1016/j.est.2020.101995.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent progress in copper sulfide based nanomaterials for high energy supercapacitor applications D Majumdar Journal of Electroanalytical Chemistry, https://doi.org/10.1016/j.jelechem.2020.114825.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Majumdar D. Role of MXenes/Polyaniline Nanocomposites in Fabricating Innovative Supercapacitor Technology. Advanced Energy Conversion Materials [Internet]. 2021 Nov. 20 [cited 2022 Jan. 13]; 3(1): 30-53. Available from: https://ojs.wiserpub.com/index.php/AECM/article/view/1148, https://doi.org/10.37256/aecm.3120221148.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Kinsuk Das, Dipanwita Majumdar, Prospects of MXenes/graphene nanocomposites for advanced supercapacitor applications, Journal of Electroanalytical Chemistry, Volume 905, 2022, 115973, ISSN 1572-6657, https://doi.org/10.1016/j.jelechem.2021.115973.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Room Temperature Synthesis of Perovskite Hydroxide, MnSn(OH)6: A Negative Electrode for Supercapacitor Authors Manas Mandal, Krishna Chattopadhyay, Malay Chakraborty, Wonjae Shin, Kamal Kanti Bera, Sujit Chatterjee, Akbar Hossain, Dipanwita Majumdar, Arup Gayen, Changwoon Nah, Swapan Kumar Bhattacharya Publication date 2022/11 Journal Electronic Materials Letters Volume 18 Issue 6 Pages 559-567 Publisher The Korean Institute of Metals and Materials.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Recent Developments of Methanol Electrooxidation Using Nickel-based Nanocatalysts Authors Dipanwita Majumdar, Swapan Kumar Bhattacharya Publication date 2022/10/26 Source ChemistrySelect Volume 7 Issue 40 Pages e202201807.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Graphitic Carbon Nitride (g-C3N4): A Proficient Electrode Material for Flexible Supercapacitors Authors Rudra Sarkar and Munmun Mondal & Dipanwita Majumdar Publication date 2023/12/7 Journal Advanced Materials Science and Technology Volume 5 Issue 2 Pages https://doi.org/10.37155/2717-526X-0502-.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Sengupta, K., Karmakar, B., Roy, S., Kaur, A. & Gupta Bhattacharya, S.</td>
|
||||||
|
<td>Analysing airborne fungal concentration in Kolkata, India: temporal distribution, the effect of atmospheric parameters and health impact</td>
|
||||||
|
<td>Air Quality, Atmosphere & Health</td>
|
||||||
|
<td>16</td>
|
||||||
|
<td>963–984</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Kaur, A.</td>
|
||||||
|
<td>Assessment of airborne fungal allergens: Biochemical & Immunoproteomic approach: A review</td>
|
||||||
|
<td>Plant Archives</td>
|
||||||
|
<td>21</td>
|
||||||
|
<td>2428-2432</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Chakraborty, P., Roy, A., & Kaur, A.</td>
|
||||||
|
<td>Effect of airborne grass pollen and PM 2.5 level on anti-allergic respiratory medication sale in the city of Howrah, India.</td>
|
||||||
|
<td>Indian Journal of Aerobiology</td>
|
||||||
|
<td>33</td>
|
||||||
|
<td>17-23</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Kaur, A., Karmakar, B., & Sarkar, M.B.</td>
|
||||||
|
<td>Enumerating aeromycota in a suburban area of West Bengal, with reference to meteorological factors and health impact</td>
|
||||||
|
<td>Journal of the Botanical Society of Bengal</td>
|
||||||
|
<td>74(2)</td>
|
||||||
|
<td>80-90</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Karmakar, B., Sengupta, K., Kaur, A., Roy, A. & Gupta Bhattacharya, S.</td>
|
||||||
|
<td>Fungal bio-aerosol in multiple micro-environments from Eastern India: source, distribution, and health hazards</td>
|
||||||
|
<td>SN Applied Sciences</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>565</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-paper" role="tabpanel" aria-labelledby="v-pills-paper-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Paper Presentation</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Paper Title</th>
|
||||||
|
<th>Organizer</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2010</td>
|
||||||
|
<td>2010: Oral Presentation: on "Formation Dynamics of V- and Y-shaped Polyaniline nanowires". 4-5th Feb, 2010 (UGC sponsored National Seminar: EMERGING CONCERNS AND ADVANCES IN CHEMISTRY).</td>
|
||||||
|
<td>Lady Brabourne College (Kolkata)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Jan.2011</td>
|
||||||
|
<td>2011: Poster presentation: on "Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction". (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS).</td>
|
||||||
|
<td>Sree Gopal Banerjee College, Bagati, Mogra, Hooghly</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Jul.2013</td>
|
||||||
|
<td>2013: Oral Presentation: ON THE TOPIC "Nanopesticides: A Challenging Domain of Current Research" by D Majumdar 2013. (National Conference).</td>
|
||||||
|
<td>Panchkot Mahavidyalaya, Purulia</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Aug.2015</td>
|
||||||
|
<td>2015: Poster presentation: on "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Graphene Oxide-Copper (II) Oxide composites." on 1-2nd August, 2015. (National Conference/ National Symposium).</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.Dec.2015</td>
|
||||||
|
<td>2015: Poster presentation: NANOS 2015- International conference on the topic "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Reduced-Graphene Oxide-Copper (II) Oxide composites."</td>
|
||||||
|
<td>GITAM University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2016</td>
|
||||||
|
<td>2016: Poster presentation: on the topic "Role of beta-cyclodextrin-functionalized graphene oxide in removal of organic-dye water pollutants." (National Conference).</td>
|
||||||
|
<td>Dept of Chemistry, Burdwan University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.Mar.2016</td>
|
||||||
|
<td>2016: Poster presentation: ICMRA 2016- "Synthesis, Characterization and Electrochemical Study of Hydroxy-Functionalized Graphene/MnO2 nanocomposite" (International Conference).</td>
|
||||||
|
<td>CMR Technical Campus, Hyderabad</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.May.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Synthesis, Characterization and Electrochemical Studies of hydroxy functionalized Graphene-MnO2 Nanocomposite" Dipanwita Majumdar INTERNATIONAL CONFERENCE ON NANOTECHNOLOGY FOR BETTER LIVING (ICNBL-2016) (25/5/2016 -29/5/2016 NIT SRINAGAR AND IIT KANPUR.</td>
|
||||||
|
<td>NIT SRINAGAR, JAMMU AND KASHMIR</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Tuning of Charge Transport Properties in Polypyrrole Nanotubes" Dipanwita Majumdar UGC sponsored ONE DAY National Seminar 2016 RECENT ADVANCES IN LIFE SCIENCE IN THE LIGHT OF CHEMISTRY.</td>
|
||||||
|
<td>Bethune College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation on "Adsorption and Removal of Water Soluble Methylene Blue Dye by Beta-Cyclodextrin Functionalized Graphene Oxide" Dipanwita Majumdar UGC sponsored National Seminar 2016 ENTHRALLING FACETS OF MOLECULAR MANIFESTATION IN CHEMICAL SCIENCES.</td>
|
||||||
|
<td>Bidhannagar College, SALTLAKE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: Role of Sonochemically synthesized Beta-Cyclodextrin Functionalized Graphene Oxide in Adsorption of Water Soluble Brilliant Green Dye: Dipanwita Majumdar UGC sponsored National Seminar 2016 on RECENT TRENDS IN CHEMICAL RESEARCH.</td>
|
||||||
|
<td>Sarojini Naidu College for Women and Hiralal Mazumdar College for Women</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.Nov.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Adsorption and Removal of Soluble Methylene Blue Dye from Water by Sorbefacient Graphene Oxide" Dipanwita Majumdar UGC-Sponsored two day National Seminar on "MODERN TRENDS IN CHEMICAL SCIENCES".</td>
|
||||||
|
<td>Dept of Chemistry, Narasinha Dutt College and Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.Aug.2018</td>
|
||||||
|
<td>2018: Poster presentation: Recent Advancements of RuO2/Functionalized-Graphene Composites for Supercapacitor Applications By Dipanwita Majumdar at Recent Advances in Molecules and Materials: RA2M 2018' (International Conference).</td>
|
||||||
|
<td>School of Applied Science & Humanities, Haldia Institute of Technology, Haldia-721657 and Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Jan.2019</td>
|
||||||
|
<td>2019: Poster presentation: Supercapatteries: A Revolution in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference on Advances in Nanomaterials and Devices for Energy and Environment (ICAN-2019) (International Conference).</td>
|
||||||
|
<td>Advanced Materials and Nano-electronics Research Group of CNT Lab, in ABV-IIITM, Gwalior</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Mar.2019</td>
|
||||||
|
<td>2019: Oral presentation: Supercapacitors to Supercapatteries: Renaissance in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference of Emerging Technologies and Sustainable Development 2019 (ICETSD '19)(International Conference).</td>
|
||||||
|
<td>Government College of Engineering and Leather Technology, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08.Jan.2020</td>
|
||||||
|
<td>2020: Two-Day International Seminar on "Innovation, Expansion, Impacts and Challenges in Chemical and Biological Sciences" to be held on 8-9th January, 2020.</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Feb.2020</td>
|
||||||
|
<td>2020: National Symposium on Renewable Energy for Sustainable Future: Materials & Technology Development at Heritage Institute of Technology on 27/02/2020 on : Recent progress of supercapacitors.</td>
|
||||||
|
<td>Heritage Institute of Technology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Orientation Program</td>
|
||||||
|
<td>University Grants Commission, University of Calcutta</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refresher Course in Life Science</td>
|
||||||
|
<td>University Grants Commission, University of Calcutta</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Refresher Course in Life Science</td>
|
||||||
|
<td>University Grants Commission, University of Calcutta</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>UGC-sponsored workshop</td>
|
||||||
|
<td>University Grants Commission, University of Calcutta</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Dr. Amarjeet Kaur</td>
|
||||||
|
<td>Biodiversity of airborne mold spores from different indoor working environments related to the food industry of West Bengal</td>
|
||||||
|
<td>International conference on 3S-Safety, Security and Sustainability: Innovations in food and bioprocess industries.</td>
|
||||||
|
<td>Department of Food Technology and Biochemical Engineering, Jadavpur University</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Dr. Amarjeet Kaur</td>
|
||||||
|
<td>Annual incidence and seasonal periodicity of airborne microfungi in indoor library environment of Sree Chaitanya College, Habra</td>
|
||||||
|
<td>National Conference on Respiratory Allergy & Immunology</td>
|
||||||
|
<td>Allergy and Asthma Research Centre and Dept. of Zoology, University of Calcutta</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Dr. Amarjeet Kaur</td>
|
||||||
|
<td>Comparative study of airborne fungal spores in library and classroom of Sree Chaitanya College, Habra</td>
|
||||||
|
<td>National Conference of Indian Aerobiological Society</td>
|
||||||
|
<td>Indian Aerobiological Society</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Topic Taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>I</td>
|
||||||
|
<td>BOTHSEC101M</td>
|
||||||
|
<td>Floriculture and Gardening</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>I</td>
|
||||||
|
<td>BOTMIN101P / BOTCOR101P</td>
|
||||||
|
<td>Pteridophytes</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>III</td>
|
||||||
|
<td>BOTDSC303T</td>
|
||||||
|
<td>Archegoniate</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>III</td>
|
||||||
|
<td>BOTMIN303P / BOTCOR303P</td>
|
||||||
|
<td>Anatomy and Embryology</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>IV</td>
|
||||||
|
<td>BOTACOR12T & BOTACOR12P</td>
|
||||||
|
<td>Plant Physiology</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>V</td>
|
||||||
|
<td>BOTADSE03T & BOTADSE03P</td>
|
||||||
|
<td>Industrial & Environmental Microbiology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-award" role="tabpanel" aria-labelledby="v-pills-award-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Award Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Qualified in nationally competitive examination, JAM -2005, conducted by Indian Institute of Technology (IIT), All India Rank-162</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, CSIR-UGC NET - 2006, conducted jointly by Council of Scientific and Industrial Research (CSIR) and University Grants Commission (UGC), Govt. of India, 2006, December for lectureship and research fellowship. Selected for SPM interview under CSIR.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2006, conducted by Indian Institute of Technology (IIT), All India Rank-281</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2007, conducted by Indian Institute of Technology (IIT), All India Rank-12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Poster award for the presentation: on “Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction”. (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS At Sree Gopal Banerjee College, Bagati, Mogra, Hooghly, West Bengal)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>2nd best poster presentation at International Conference on Materials Research and Applications (ICMRA-2016) from 11-13 March 2016 @ CMR TECHNICAL CAMPUS, Kandlakoya (V), Medchal (M), RR Dist, Telangana, India-501401, (Approved by AICTE, New Delhi, Affiliated to JNTU, Hyderabad.)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>3rd Young Women Scientist paper presentation at International Conference on Nanotechnology for Better Living, 2016 jointly organized by IIT Kanpur and NIT Srinagar at Srinagar, J&K, India on 25-29th May, 2016.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Research Excellence Award-2021, InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Young Researcher Award-2021 InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Women Researcher Award in the International Scientist Awards on Engineering, Science and Medicine by VDGOOD Professional Association</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Asia’s Science, Technology and Research Awards 2023 (ASTRA 2023) Outstanding Researcher Award in Materials Science</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-hand" role="tabpanel" aria-labelledby="v-pills-hand-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Membership</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
<th>Membership</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Moderator and Question Paper Setters of UG and PG Level CHEMISTRY COURSES IN various reputed Universities in India.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life Member at Indian Physical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life member of Indian Association for the Cultivation of Science, Jadavpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Reviewer of many reputed International peer-reviewed journals (Springer, Elsevier, Wiley)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>InSc Professional Member, Institute of Scholars, Department of Awards, Muddhinapalya Bengaluru-560091, Karnataka, India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Editorial Board Member of Peer-reviewed International Journal: Materials Science Research India for 2017 and 2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
569
faculty/dr-atanu-mitra.php
Normal file
569
faculty/dr-atanu-mitra.php
Normal file
@@ -0,0 +1,569 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. ATANU MITRA</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Associate Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:atanumitra.chem.@scc.ac.in" class="fw-bold">atanumitra.chem.@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9073276787</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Synthesis of nanomaterias and their applications as a catalyst, antimicrobial agent etc. </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc (H)</td>
|
||||||
|
<td>1992</td>
|
||||||
|
<td>Chemistry (H)<br>Phy(P), Math(P)</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>1994</td>
|
||||||
|
<td>Pure Chemistry</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>2001</td>
|
||||||
|
<td>Interactions of Surfactants, Biopolymers and their mixtures in bulk and interfacial phases</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Postdoctoral Fellow</td>
|
||||||
|
<td>Research Centre for Material Science (RCMS), Nagoya University, Japan</td>
|
||||||
|
<td>April 2002</td>
|
||||||
|
<td>March 2004</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Research Associate</td>
|
||||||
|
<td>Dept of Material Science, I.A.C.S., Kol-32, India</td>
|
||||||
|
<td>August 2004</td>
|
||||||
|
<td>November 2006</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Postdoctoral Research Fellow</td>
|
||||||
|
<td>Dept of Physical Chemistry, USC, Spain</td>
|
||||||
|
<td>December 2006</td>
|
||||||
|
<td>September 2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra, W.B., India</td>
|
||||||
|
<td>11th September 2007</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Associate Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra, W.B., India</td>
|
||||||
|
<td>December 2019</td>
|
||||||
|
<td>Continue</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Visiting Scientist Position</td>
|
||||||
|
<td>University of Santiago de Compostela, Spain</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Visiting Scientist Position</td>
|
||||||
|
<td>RESEARCH EXCELLENCE PROGRAMME USC-INDIA (PEIN), USC, Spain</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Visiting Scientist Position</td>
|
||||||
|
<td>RESEARCH EXCELLENCE PROGRAMME USC-INDIA (PEIN), USC, Spain</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Year and Page</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>G. Dinda, D. Halder*, A. Mitra*, N. Pal & D. K. Chattoraj</td>
|
||||||
|
<td>Phytosynthesis of silver nanoparticles using Zingiber officinale extract: evaluation of their catalytic and antibacterial activities</td>
|
||||||
|
<td>Journal of Dispersion Science and Technology</td>
|
||||||
|
<td>41</td>
|
||||||
|
<td>2020, 2128</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>S. Swargiary, A. Mitra, D. Halder and S. Kumar</td>
|
||||||
|
<td>Fruit extract capped colloidal silver nanoparticles and their application in reduction of methylene blue dye</td>
|
||||||
|
<td>Biocatalysis and Biotransformation</td>
|
||||||
|
<td>37</td>
|
||||||
|
<td>2019, 183</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>S. Kumar*, A. Shukla, P. P. Baul, A. Mitra*, D. Halder*</td>
|
||||||
|
<td>Biodegradable hybrid nanocomposites of chitosan/gelatin and silver nanoparticles for active food packaging applications</td>
|
||||||
|
<td>Food Packaging and Shelf life</td>
|
||||||
|
<td>16</td>
|
||||||
|
<td>2018, 178</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>G. Dinda, D. Halder* and A. Mitra*</td>
|
||||||
|
<td>Catalytic and antibacterial activity of copper nanoparticle-starch composite</td>
|
||||||
|
<td>Advanced Materials Proceedings (Journal of Vbri Press)</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>2018, Issue-1, page-2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>G.Dinda, D. Halder,* A. Mitra,* N. Pal, C. Vázquez-Vázquezd and M. A. López-Quintela</td>
|
||||||
|
<td>Study of the antibacterial and catalytic activity of silver colloids synthesized using the fruit of Sapindus mukorossi</td>
|
||||||
|
<td>New J. Chem</td>
|
||||||
|
<td>41</td>
|
||||||
|
<td>2017, 10703</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>G.Dinda, D. Halder, A. Mitra</td>
|
||||||
|
<td>Synthesis of gold colloid using Zingiber officinale: Catalytic study</td>
|
||||||
|
<td>NanoMatChemBioDev</td>
|
||||||
|
<td>01</td>
|
||||||
|
<td>2018,1</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>S. Kumar, W. Bhattacharya, M. Singh, D. Halder, A. Mitra</td>
|
||||||
|
<td>Plant latex capped colloidal silver nanoparticles: A potent anti-biofilm and fungicidal formulation</td>
|
||||||
|
<td>Journal of Molecular Liquids</td>
|
||||||
|
<td>230</td>
|
||||||
|
<td>2017, 705</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>S. Kumar, M. Singh, D. Halder, A. Mitra</td>
|
||||||
|
<td>Centella asiatica leaf mediated synthesis of silver nanocolloid and its application as filler in gelatin based antimicrobial nanocomposite film</td>
|
||||||
|
<td>LWT- Food Science and Technology</td>
|
||||||
|
<td>75</td>
|
||||||
|
<td>2017, 293</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>S. Bag, A. Bardhan, D. Bera, A. Mitra, D. Halder</td>
|
||||||
|
<td>Study of Adsorption of Malachite Green on Dried Aspergillus versicolor (MTCC280) Biomass</td>
|
||||||
|
<td>Journal of Surface Science and Technology</td>
|
||||||
|
<td>33</td>
|
||||||
|
<td>2017, 70</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>S. Kumar, D. Halder, A. Mitra</td>
|
||||||
|
<td>Characterization of Silver Nanoparticles Synthesized using Latex of Jatropha curcas and Lannea grandis</td>
|
||||||
|
<td>Journal of Surface Science and Technology</td>
|
||||||
|
<td>32</td>
|
||||||
|
<td>2016, 115</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>A. Gani, R. Bhadra, D.K. Chattoraj, D.C. Mukherjee, A. Mitra</td>
|
||||||
|
<td>Thermodynamics of binding of inorganic salts and organic solutes to crab hemocyanin</td>
|
||||||
|
<td>J. Indian. Chem.</td>
|
||||||
|
<td>93</td>
|
||||||
|
<td>2016,115</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>A. Mitra, D. Halder</td>
|
||||||
|
<td>Antimicrobial metal and metal oxide nanoparticles: application in food industry</td>
|
||||||
|
<td>Journal of Food Bioengineering and Nanoprocessing</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>2016,2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>S.Kumar, M.Singh, D. Halder, A.Mitra</td>
|
||||||
|
<td>Lippia javanica: a cheap natural source for the synthesis of antibacterial silver nanocolloid</td>
|
||||||
|
<td>Applied nanoscience</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2015, doi:10.1007/s13204-015-0507-6</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>G. Dinda, D. Halder, C.Vazquez Vazquez, M.A.Lopez Quintela, A.Mitra</td>
|
||||||
|
<td>Green Synthesis of Copper Nanoparticles and their Antibacterial Property</td>
|
||||||
|
<td>Journal of Surface Science and Technology</td>
|
||||||
|
<td>31</td>
|
||||||
|
<td>2015, 117</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Santosh Kumar, Mukesh Singh, Dipankar Halder, Atanu Mitra</td>
|
||||||
|
<td>Mechanistic study of antibacterial activity of biologically synthesized silver nanocolloids</td>
|
||||||
|
<td>Colloids and Surfaces A: Physicochemical and Engineering Aspects</td>
|
||||||
|
<td>449</td>
|
||||||
|
<td>82, 2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>D. Das, R. Banerjee, A. Mitra</td>
|
||||||
|
<td>Bioactive and pharmacologically important pyrano[2,3-c]pyrazoles</td>
|
||||||
|
<td>J. Chem. Pharm. Res</td>
|
||||||
|
<td>06</td>
|
||||||
|
<td>Issue-11, 2014, 108</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>K. S. Gayen, T. Sengupta, Y. Saima, A. Das, D. K. Maiti, A. Mitra</td>
|
||||||
|
<td>Cu(0) nanoparticle catalyzed efficient reductive cleavage of isoxazoline, carbonyl azide and domino cyclization in water medium</td>
|
||||||
|
<td>Green Chemistry</td>
|
||||||
|
<td>14</td>
|
||||||
|
<td>2012, 1589</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>D. Halder, A. Mitra, S. Bag, U. Raychaudhuri, R. Chakraborty</td>
|
||||||
|
<td>Study on Gelatin-Silver Nanoparticle Composite Towards the Development of Bio-Based Antimicrobial Film</td>
|
||||||
|
<td>Journal of Nanoscience and Nanotechnology</td>
|
||||||
|
<td>11</td>
|
||||||
|
<td>2011, 10374</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>19</td>
|
||||||
|
<td>A. Mitra, R. Majumdar, D. Halder, A. Bardhan</td>
|
||||||
|
<td>Non-isothermal decomposition kinetic and non-linear dielectric properties of Cu(II) and Zn(II) alginate complex</td>
|
||||||
|
<td>Journal of Applied Polymer Science</td>
|
||||||
|
<td>120</td>
|
||||||
|
<td>2011, 2070</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>20</td>
|
||||||
|
<td>P. Das, S. Karmakar, D. Halder, A. Mitra</td>
|
||||||
|
<td>Eco-friendly synthesis of highly stable silver nanoparticles and their catalytic activity</td>
|
||||||
|
<td>Journal of Nanoparticle Research</td>
|
||||||
|
<td>13</td>
|
||||||
|
<td>2011, 6377</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>21</td>
|
||||||
|
<td>D. Halder, P. K. Bhattacharya, A. Mitra</td>
|
||||||
|
<td>Studies on biosorption of methylene blue dye using Aspergillus versicolor biomass</td>
|
||||||
|
<td>Environmental Progress & Sustainable Energy</td>
|
||||||
|
<td>30</td>
|
||||||
|
<td>2011, 152</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>22</td>
|
||||||
|
<td>D. Halder, A. Mitra</td>
|
||||||
|
<td>Green Synthesis of silver nanoparticles using a latex biomaterial</td>
|
||||||
|
<td>Colloids and Surfaces B: Biointerfaces</td>
|
||||||
|
<td>84</td>
|
||||||
|
<td>2011, 382</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>23</td>
|
||||||
|
<td>A. Mitra, D. Halder</td>
|
||||||
|
<td>Synthesis of silver nanoparticles using plant extract and their application as antimicrobial agent</td>
|
||||||
|
<td>Journal of Nanomedicine Research</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>2010, 105</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>24</td>
|
||||||
|
<td>S. Karmakar, D. Halder, A. Mitra</td>
|
||||||
|
<td>Photochemical synthesis of gold nanoparticles and their catalytic activity</td>
|
||||||
|
<td>Materials Chemistry and Physics</td>
|
||||||
|
<td>120</td>
|
||||||
|
<td>2010, 570</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25</td>
|
||||||
|
<td>D. Halder, P. K. Bhattacharya, A. Mitra</td>
|
||||||
|
<td>Development of bio-based silver nanocomposite film</td>
|
||||||
|
<td>Journal of Food Science</td>
|
||||||
|
<td>75</td>
|
||||||
|
<td>2010, 73</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>26</td>
|
||||||
|
<td>A. Mitra, D. Halder</td>
|
||||||
|
<td>Silver nanoparticles synthesized from natural latex: A potent antimicrobial agent</td>
|
||||||
|
<td>International Journal of Biological Macromolecules</td>
|
||||||
|
<td>47</td>
|
||||||
|
<td>2010, 214</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27</td>
|
||||||
|
<td>P. K. Bhattacharya, D. Halder, A. Mitra</td>
|
||||||
|
<td>Antimicrobial properties of silver nanoparticles synthesized using natural extracts</td>
|
||||||
|
<td>Environmental Science & Technology</td>
|
||||||
|
<td>44</td>
|
||||||
|
<td>2010, 564</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>28</td>
|
||||||
|
<td>A. Bardhan, D. Halder, A. Mitra</td>
|
||||||
|
<td>Polymer-supported silver nanoparticles: A novel approach for antimicrobial application</td>
|
||||||
|
<td>Journal of Polymer Research</td>
|
||||||
|
<td>17</td>
|
||||||
|
<td>2010, 529</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29</td>
|
||||||
|
<td>A. Mitra, D. Halder</td>
|
||||||
|
<td>Biosynthesis of silver nanoparticles and their application in medicine</td>
|
||||||
|
<td>Journal of Medicinal Chemistry</td>
|
||||||
|
<td>53</td>
|
||||||
|
<td>2009, 212</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>30</td>
|
||||||
|
<td>P. Das, S. Karmakar, D. Halder, A. Mitra</td>
|
||||||
|
<td>Facile synthesis of silver nanoparticles using plant extracts and their biological activity</td>
|
||||||
|
<td>Journal of Experimental Nanoscience</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>2009, 123</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>31</td>
|
||||||
|
<td>D. Halder, A. Mitra</td>
|
||||||
|
<td>Natural polymer-based nanocomposites for antimicrobial applications</td>
|
||||||
|
<td>Macromolecular Materials and Engineering</td>
|
||||||
|
<td>294</td>
|
||||||
|
<td>2009, 512</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>32</td>
|
||||||
|
<td>A. Mitra, D. Halder</td>
|
||||||
|
<td>Green chemistry approach in synthesis of nanomaterials</td>
|
||||||
|
<td>Green Chemistry Letters and Reviews</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>2008, 95</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>33</td>
|
||||||
|
<td>P. K. Bhattacharya, D. Halder, A. Mitra</td>
|
||||||
|
<td>Nanotechnology and its impact on food industry</td>
|
||||||
|
<td>Journal of Food Science & Technology</td>
|
||||||
|
<td>45</td>
|
||||||
|
<td>2008, 87</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>34</td>
|
||||||
|
<td>A. Mitra, D. Halder</td>
|
||||||
|
<td>Polymer nanocomposites with silver nanoparticles: A potential antimicrobial system</td>
|
||||||
|
<td>Polymer Journal</td>
|
||||||
|
<td>40</td>
|
||||||
|
<td>2008, 425</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>35</td>
|
||||||
|
<td>P. Das, S. Karmakar, D. Halder, A. Mitra</td>
|
||||||
|
<td>Nanostructured materials for drug delivery applications</td>
|
||||||
|
<td>International Journal of Nanomedicine</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>2007, 79</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>36</td>
|
||||||
|
<td>A. Mitra, D. Halder</td>
|
||||||
|
<td>Advances in nanotechnology: A future perspective</td>
|
||||||
|
<td>Nanotechnology Reviews</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>2007, 29</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>.</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
368
faculty/dr-biswanath-bhowmik.php
Normal file
368
faculty/dr-biswanath-bhowmik.php
Normal file
@@ -0,0 +1,368 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Biswanath Bhowmik</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">7001806611</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Zoology (Entomology) </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Observation of Insect pollinators and pest diversity and Analysis of Insect antennal response through Electroantennogram (EAG) and volatile compound tracing through GC MS, Olfactometry etc.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc in Zoology</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Zoology</td>
|
||||||
|
<td>N.S.O.U</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc in Zoology</td>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Zoology</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PhD</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Zoology</td>
|
||||||
|
<td>Kalyani University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Life Science</td>
|
||||||
|
<td>Government College of Education, Banipur</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>JRF and SRF</td>
|
||||||
|
<td>Kalyani University, Department of Zoology</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Assistant Professor (Stage I)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Present</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Rajiv Gandhi National Fellowship (UGC)</td>
|
||||||
|
<td>Central Government of India</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Doctor of Philosophy (Science)</td>
|
||||||
|
<td>Kalyani University</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Biswanath Bhowmik, Sachin Lakare, Avalokiteswar Sen, Kakali Bhadra</td>
|
||||||
|
<td>Olfactory stimulation of Apis cerana indica towards different doses of volatile constituents: SEM and EAG approaches.</td>
|
||||||
|
<td>Journal of Asia-Pacific Entomology</td>
|
||||||
|
<td>19 (2016)</td>
|
||||||
|
<td>847–859</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Bhowmik, B and Bhadra, K</td>
|
||||||
|
<td>Insect pollinators and their role on crop yield and quality of Sunflower (Helianthus annuus, PAC-361) from West Bengal</td>
|
||||||
|
<td>International Journal of Current Science</td>
|
||||||
|
<td>18: E</td>
|
||||||
|
<td>76-87</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Biswanath Bhowmik, Bulganin Mitra, Kakali Bhadra</td>
|
||||||
|
<td>Diversity of insect pollinators of cash crop plants in southern West Bengal</td>
|
||||||
|
<td>Journal of Soil Biology & Ecology</td>
|
||||||
|
<td>35 (1&2)</td>
|
||||||
|
<td>241-250</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Bhowmik, B., Mitra, B., Bhadra, K</td>
|
||||||
|
<td>Diversity of insect pollinators and their effect on the crop yield of Brassica Juncea L., NPJ-93, from Southern West Bengal</td>
|
||||||
|
<td>International Journal of Recent Scientific Research</td>
|
||||||
|
<td>Vol: 05</td>
|
||||||
|
<td>ISSN: 0976-3031</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Bhowmik, B., Bhadra, K., Mitra, B</td>
|
||||||
|
<td>Insects association with the flowers of the maize crop (Zea mays, JKMH 502) in West Bengal</td>
|
||||||
|
<td>Bionotes</td>
|
||||||
|
<td>Vol: 16</td>
|
||||||
|
<td>60-62</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Biswanath Bhowmik, Kakali Bhadra</td>
|
||||||
|
<td>Ecosystem services provided by insects through pollination.</td>
|
||||||
|
<td>University of Kalyani Proceedings of the national conference on challenges in biodiversity and resource management, department of zoology</td>
|
||||||
|
<td>ISBN: 978-81-927762-0-0</td>
|
||||||
|
<td>122-128</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Bhowmik, B</td>
|
||||||
|
<td>Ecosystem services provided by insects through pollination and foraging of cultivated crops in southern West Bengal</td>
|
||||||
|
<td>Impression The Journal on Multidisciplinary Studies</td>
|
||||||
|
<td>Vol-2</td>
|
||||||
|
<td>66-74</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Biswanath Bhowmik, Kakali Bhadra</td>
|
||||||
|
<td>Morphological and morphometric studies of the antennal sensilla from Indian honey bee Apis cerana indica</td>
|
||||||
|
<td>Impression The Journal on Multidisciplinary Studies</td>
|
||||||
|
<td>Vol-3</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Biswanath Bhowmik, Udipta Chakraborti, Alivia Mandal, Bishwajeet Paul, Kakali Bhadra</td>
|
||||||
|
<td>Attraction of Aulacophora foveicollis Lucas (Coleoptera: Chrysomelidae) to Host Plant Cucurbita maxima Duchesne (Cucurbitaceae) Volatiles</td>
|
||||||
|
<td>Agronomy</td>
|
||||||
|
<td>12(11)</td>
|
||||||
|
<td>2640-2644</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Biswanath Bhowmik</td>
|
||||||
|
<td>Diversified ecological roles of insect pollinators in the fruits of Coriandrum sativum L. (Rajasthan Coriander-41) from Nadia District, West Bengal</td>
|
||||||
|
<td>Sustainable Chemical Insight in Biological Exploration, Lincoln University College, Malaysia</td>
|
||||||
|
<td>ISBN: 978-967-2819-31-8</td>
|
||||||
|
<td>01-09</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Biswanath Bhowmik</td>
|
||||||
|
<td>Diversified Roles of Insects in Essential Ecosystem through Pollination for Achieving Sustainable Goals</td>
|
||||||
|
<td>Environment and Ecology</td>
|
||||||
|
<td>42(2)</td>
|
||||||
|
<td>413-419</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>FIP</td>
|
||||||
|
<td>Pondicherry University</td>
|
||||||
|
<td> 04.08.2021 to 02.09.2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>RC</td>
|
||||||
|
<td>Pondicherry University</td>
|
||||||
|
<td>07.07.2022 to 20.07.2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Zoology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
730
faculty/dr-biswanath-sarkar.php
Normal file
730
faculty/dr-biswanath-sarkar.php
Normal file
@@ -0,0 +1,730 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">DR. BISWANATH SARKAR</h3>
|
||||||
|
<p class="" style="font-weight: 500;">ASSISTANT PROFESSOR IN POLITICAL SCIENCE</p>
|
||||||
|
<p style="margin-top: -10px;">M.Phil, Ph.d.</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:bsarkar.polsc@sreechaitanyacollege.ac.in" class="fw-bold">bsarkar.polsc@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9830346250</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Women’s issues in Politics, Sociological and Anthropological issues in Politics.</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Women’s issues in Politics, Sociological and Anthropological issues in Politics, Local Governance and Politics.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>BA</td>
|
||||||
|
<td>2002</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>RBU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MA</td>
|
||||||
|
<td>2004</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>RBU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Phil.</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>CU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>16.03.2016</td>
|
||||||
|
<td>Interdisciplinary, related to Political Science</td>
|
||||||
|
<td>SOWS, JU</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Research Assistant</td>
|
||||||
|
<td>Project entitled "Public health initiatives undertaken by Gram Panchayats”, sponsored by DFID and implemented by State Institute for Panchayat and Rural Development (SIPRD), Government of West Bengal, under the senior faculty member associate, Gayatri Basu, SIPRD, Kalyani, Nadia.</td>
|
||||||
|
<td>January 2007</td>
|
||||||
|
<td>March 2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Research & Survey Assistant</td>
|
||||||
|
<td>Project, “Redevelopment of the Bowbarracks Complex by the Calcutta Improvement Trust through a Public-Private Partnership”, under the Graduate Researcher, Indro Bhattacharyya, University of Amsterdam, Netherlands.</td>
|
||||||
|
<td>January 2007</td>
|
||||||
|
<td>February 2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Interviewer</td>
|
||||||
|
<td>Worked as an Interviewer in three research projects under the teacher associate, Prof. Satyabrata Chakraborty, Dept. of Political Science, University of Calcutta. Title of the Projects:
|
||||||
|
<ul>
|
||||||
|
<li>Public hospitals in West Bengal: Government Version, Media Representation and People’s Perception. (Funded by the University of Calcutta under the departmental research programme).</li>
|
||||||
|
<li>Mother and Child Care: a study of select Anganwadi Centres in urban West Bengal. (Funded by the UGC under DRS Programme).</li>
|
||||||
|
<li>West Bengal’s experiments with Urbanization: a study of New Town, Kolkata (funded by HIDCO, Government of West Bengal).</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Research Assistant</td>
|
||||||
|
<td>Project, “Evaluating Economic and Social Impact of Joining SHG” (Funded by the UGC), under the teacher associate, Dr. Tanmoyee Banerjee (Chatterjee), Dept. of Economics, Jadavpur University.</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Principal Investigator</td>
|
||||||
|
<td>Completed Minor Research Project under Research and Development Cell, Sree Chaitanya College, Habra. Title of my Research Project is “Paschimbanger Gramin Narir Khamatayane Biri Shilper Bhumika: Ekti Khetrasmikhyabhittik Anusandhan.”</td>
|
||||||
|
<td>13.10.2020</td>
|
||||||
|
<td>27.02.2023</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Sir Ratan Tata Trust (SRTT) Ph.D Fellowship</td>
|
||||||
|
<td>School of Women's Studies, Jadavpur University, Kolkata.</td>
|
||||||
|
<td>01/08/2008 to 06/04/2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Active Programme Officer Award, 2016-2017</td>
|
||||||
|
<td>NSS Cell, West Bengal State University</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Active Programme Officer Award, 2017-2018</td>
|
||||||
|
<td>NSS Cell, West Bengal State University</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Active Programme Officer Award, 2022-2023</td>
|
||||||
|
<td>NSS Cell, West Bengal State University</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>“Paschimbanger Gramin Narir Khamatayane Biri Shilper Bhumika: Ekti Khetrasmikhyabhittik Anusandhan.”</td>
|
||||||
|
<td>30,000</td>
|
||||||
|
<td>13.10.2020</td>
|
||||||
|
<td>27.02.2023</td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>Research and Development Cell, Sree Chaitanya College, Habra.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal/ Book</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Gandhi Bhabonai Narir Birudhhe Sanghatito Aporadh O Tar Bartoman Prasongikata</td>
|
||||||
|
<td>Nibedita Bayen and Swapan Sarkar (eds.), Gandhi Bhabonar Punorbikkhon, Progressive Publisher, Kolkata (ISBN: 78-93-94935-29-7)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>99-113</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Biswanath Sarkar</td>
|
||||||
|
<td>Bharatiyo Dando Bidhir 377 Dhara Bilop O Samakami Manuser Larai: Ekti Parjalochana</td>
|
||||||
|
<td>Journal of Kolkata Society for Asian Studies, An International Bilingual Journal of Social Science (UGC Care, ISSN 2454-5694)</td>
|
||||||
|
<td>Volume 9, Number 1</td>
|
||||||
|
<td>167-180</td>
|
||||||
|
<td>June 2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Ek Aporichita Bridhhar Dinolipi: Naribadi Manoner Anushandhan</td>
|
||||||
|
<td>Dr. Basumita Tarafder & others (eds.), Bharater Swadhinwata Andolon: Preskhit O Obodan, Getaway Publishing House, Habra (ISBN: 978-93-92251-15-3)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>96-104</td>
|
||||||
|
<td>November 2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Bharatiyo Ganatantra O Bichhinnotabadi Shokti</td>
|
||||||
|
<td>Krishno Gopal Mohanto (ed.), Samakalin Bharat: Samaj O Rajniti, Barnobinnash Bookswaye, Kolkata (ISBN: 978-93-91449-26-1)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>64-83</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>The future of Caste System in India: An Introspection</td>
|
||||||
|
<td>Purvadeva- A Social Science Research Journal, Madhya Pradesh Dalit Sahitya Academy, Peer Reviewed Bilingual International Research Journal (ISSN 0974-1100)</td>
|
||||||
|
<td>Vol. 111</td>
|
||||||
|
<td>106-115</td>
|
||||||
|
<td>October-December 2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Bharoter Jatiyotabadi Adikalpo: Rastro-Nagarik Samporko</td>
|
||||||
|
<td>Ebong Mohua, Research and Referred with Peer-Review Journal, K.K. Prakashan (UGC-Care List-I 2021 approved Journal)</td>
|
||||||
|
<td>Volume 142 Spl</td>
|
||||||
|
<td>404-411</td>
|
||||||
|
<td>December 2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7.</td>
|
||||||
|
<td>Biswanath Sarkar</td>
|
||||||
|
<td>Importance of Women Empowerment for Powerful India: What Kind?</td>
|
||||||
|
<td>Amit Bhowmick & Muzamil Jan (eds.), Women Empowerment: New Dimensions, Serials Publications Pvt. Ltd., New Delhi (ISBN: 978-93-86611-85-7)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>21-32</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Fourth Wave Feminism in India: A New Dimension</td>
|
||||||
|
<td>Dr. Sukla Hazra (ed.), Values: Concepts and Perspectives, PAIOLCK, Kolkata (ISBN: 978-93-88207-78-2)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>146-155</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Deshbhager Aloke Bharotiyo Nagarikatto</td>
|
||||||
|
<td>Souvik Das (ed.), Bangha Desh: Tookro Kotha, Rachayita, Kolkata (ISBN: 978-93-82549-70-3)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>30-37</td>
|
||||||
|
<td>June 2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Microfinance O Nari: Ekti Protisthaponer Galpo</td>
|
||||||
|
<td>Prosenjit Saha (ed.), Women, Society and Politics: A Study of South Asia, Avenel Press, Kolkata (ISBN: 978-93-80736-98-3)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>352-362</td>
|
||||||
|
<td>November 2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Women’s Reservation Bill: A Long Journey</td>
|
||||||
|
<td>Journal of Political Studies, A Peer-Reviewed Journal of Political Science (ISSN: 2278-4039)</td>
|
||||||
|
<td>Vol. 11, Issue 1</td>
|
||||||
|
<td>103-112</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Indian Democracy and Identity Politics: A New Challenge</td>
|
||||||
|
<td>International Journal of Research in Social Sciences (IJRSS), A Peer-Reviewed Journal (ISSN: 2249-2496)</td>
|
||||||
|
<td>Vol. 8, Issue 6</td>
|
||||||
|
<td>647-657</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Women Empowerment and Domestic Violence: A Study</td>
|
||||||
|
<td>Samaj Tattva, An International Peer-Reviewed Journal of Sociology and Social Work (ISSN: 2394-6852)</td>
|
||||||
|
<td>Vol. 4, Issue 1</td>
|
||||||
|
<td>78-89</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Social Justice and Affirmative Action in India</td>
|
||||||
|
<td>Indian Journal of Public Administration, A Peer-Reviewed Journal (ISSN: 0019-5561)</td>
|
||||||
|
<td>Vol. 63, Issue 3</td>
|
||||||
|
<td>395-405</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Political Participation of Women in West Bengal: A Study</td>
|
||||||
|
<td>Bharatiya Samajik Chintan, A Peer-Reviewed Journal (ISSN: 0975-6876)</td>
|
||||||
|
<td>Vol. 6, Issue 2</td>
|
||||||
|
<td>120-132</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Changing Dimensions of Human Rights in India</td>
|
||||||
|
<td>Journal of Indian Law and Society (JILS), A Peer-Reviewed Journal (ISSN: 2277-5552)</td>
|
||||||
|
<td>Vol. 7, Issue 1</td>
|
||||||
|
<td>213-225</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17.</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Dalit Movements in Contemporary India</td>
|
||||||
|
<td>Economic and Political Weekly (EPW), A Peer-Reviewed Journal (ISSN: 0012-9976)</td>
|
||||||
|
<td>Vol. 50, Issue 45</td>
|
||||||
|
<td>79-87</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Orientation Course</td>
|
||||||
|
<td>UGC, ASC, CU</td>
|
||||||
|
<td>18.10.2011-18.11.2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC, ASC, CU</td>
|
||||||
|
<td>22.02.2013-14.03.2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>NSS Orientation Course</td>
|
||||||
|
<td>Training Orientation & Research Centre, Ramakrishna Mission Ashrama, Narendrapur, Kolkata</td>
|
||||||
|
<td>05/06/2016 - 11/06/2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Orientation Programme on 'Drug Abuse & Its Impact on Youth'</td>
|
||||||
|
<td>NSS Cell, WBSU, in association with the Office of the District Magistrate & Collector of Excise, Government of West Bengal</td>
|
||||||
|
<td>13.12.2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC HRDC, BU</td>
|
||||||
|
<td>06.02.2019-26.02.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC HRDC, JU</td>
|
||||||
|
<td>01.12.2021-14.12.2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>"Microfinance O Nari: Ekti Pratisthapaner Galpo"</td>
|
||||||
|
<td>'Women, Society and Politics: A Study on Indian and Bangladesh'</td>
|
||||||
|
<td>Moulana Abul Kalam Azad Institute of Asian Studies in Collaboration with Department of Political Science, Karimpur Pannadevi College, Nadia in Association with Department of Government and Politics, Jahangirnagar University, Savar, Dhaka, Bangladesh</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>'Naribadi Drishtikon O Narir Khamoyatan'</td>
|
||||||
|
<td>Empowerment of Women in India: From the Perspectives of Attaining Gender Parity and Social Justice</td>
|
||||||
|
<td>Department of Political Science, Philosophy and Economics in Collaboration with IQAC, Sabang Sajanikanta Mahavidyalaya, Paschim Medinipur</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>"Aak Aparichita Bridhyar Dinolipi: Naribadi Manoner Anushandhan" (in Bengali)</td>
|
||||||
|
<td>"Women in Texts"</td>
|
||||||
|
<td>Department of Bengali, English and Philosophy, Jhargram Raj College, Jhargram, Sponsored by Department of Higher Education, Science and Technology & Bio Technology</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>"Varotio Narir Rajnaitik Khayamatayan: Samasahya o Sahavabona"</td>
|
||||||
|
<td>Fourteenth International Conference of History & Heritage</td>
|
||||||
|
<td>Itihas Academy, Dhaka</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>'Prachyobad ebong Prachyer Sanskritik Sachetonata (Orientalism and Cultural Awareness in the East)'</td>
|
||||||
|
<td>Shilpa-Sahitya-Sanskriti: Prachya O Pratichyer Bhabnay</td>
|
||||||
|
<td>Department of Bengali & IQAC in Collaboration with Department of English & Department of Sanskrit, Sabang Sajanikanta Mahavidyalaya, Paschim Medinipur</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>'Indian Citizenship in the context of Partition'</td>
|
||||||
|
<td>Reappraising the Partition of India</td>
|
||||||
|
<td>IQAC & Department of History, Bijoy Krishna Girls' College, Howrah</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>‘The future of Caste system in India: A Discussion’</td>
|
||||||
|
<td>Social Stratification and Political Transformation: Rethinking Indian Democracy</td>
|
||||||
|
<td>Department of Political Science, Bankura University, West Bengal, India in Collaboration with Indian Council of Social Science Research (ICSSR), New Delhi</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>“Indian Democracy: Illusion and Reality”</td>
|
||||||
|
<td>‘Global Issues in Multidisciplinary Academic Research’</td>
|
||||||
|
<td>LBSM College & Kolhan University, Jharkhand in association with Vinayam Research Association, Dhanbad, Jharkhand</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>“Indian Democracy: Illusion and Reality”</td>
|
||||||
|
<td>‘Democracy in Indian Politics: Negotiating ‘Azadi’ @ 75’</td>
|
||||||
|
<td>Department of Political Science in collaboration with IQAC, Gobardanga Hindu College</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Importance of Women Empowerment for Powerful India: What Kind?</td>
|
||||||
|
<td>India as an Emerging Power: Myths and Reality</td>
|
||||||
|
<td>Department of Political Science, Kanchrapara College in Collaboration with Centre for Sub Continental Studies, Kolkata</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Naya Samajik Andalaner Natunatta O Bharatbarsho: Ekti Alokpat</td>
|
||||||
|
<td>Second Annual National Level Seminar in History</td>
|
||||||
|
<td>Paschimbanga Anchalik Itihas O Loksanskriti Charcha Kendra, Kolkata in Collaboration with Dept. of History, Surendranath College & Institute of Landscape Ecology and Ekistics</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Self Help Groups Stability and Women Empowerment in Rural West Bengal</td>
|
||||||
|
<td>Women Empowerment in India: Opportunities and Challenges</td>
|
||||||
|
<td>Department of Political Science, Sitalkuchi College</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Women’s Suffrage in Indian Democracy: A Discussion</td>
|
||||||
|
<td>19th Annual Conference of West Bengal Political Science Association</td>
|
||||||
|
<td>West Bengal Political Science Association</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Women's Political Empowerment and Indian Parliament: Major Hindrances</td>
|
||||||
|
<td>Indian Parliament at Crossroads</td>
|
||||||
|
<td>Department of Political Science, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>Cyberfeminism and Women’s Freedom of Expression</td>
|
||||||
|
<td>18th Annual Conference of West Bengal Political Science Association</td>
|
||||||
|
<td>West Bengal Political Science Association</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Dr. Biswanath Sarkar</td>
|
||||||
|
<td>India and the Question of Smaller States: An Enquiry of its Relevance</td>
|
||||||
|
<td>Changing India: Demands for Smaller States</td>
|
||||||
|
<td>Association for Political Science Study (APSS)</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Topic Taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>I</td>
|
||||||
|
<td>PLSDSC101T (NEP)</td>
|
||||||
|
<td>Sovereignty – Monism and Pluralism & Nation and State – Social Contract Theory</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>I</td>
|
||||||
|
<td>PLSMIN101T/ PLSCOR101T (NEP)</td>
|
||||||
|
<td>Sovereignty – Monism and Pluralism</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>III</td>
|
||||||
|
<td>PLSDSC303T (NEP)</td>
|
||||||
|
<td>Marxian concept of Class and Class Struggle - Surplus Value, Alienation; Marxian Theory of State - Relative Autonomy</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>III</td>
|
||||||
|
<td>PLSMIN303T (NEP)</td>
|
||||||
|
<td>Classification of Political Systems: Liberal and Socialist political systems</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>III</td>
|
||||||
|
<td>PLSHSE101M/ PLSHSE303M/ PLSGSE301M (NEP)</td>
|
||||||
|
<td>
|
||||||
|
Outline of the Legal system in India - system of courts/tribunals and their jurisdiction in India - criminal and civil courts, writ jurisdiction, specialized courts such as juvenile courts, mahila courts, and tribunals. Bharatiya Nyaya Sanhita, 2023: Brief note and distinguishing features.<br>
|
||||||
|
Role of the police and executive in criminal law administration – Laws relating to criminal jurisdiction - provision relating to filing an FIR, arrest, bail search and seizure, and some understanding of the questions of evidence and procedure in BNSS (Bharatiya Nagarik Suraksha Sanhita 2023) and related laws, important offenses under the Indian Penal Code.<br>
|
||||||
|
Alternate dispute redressal mechanisms – Lok Adalats, Shalishi.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>V</td>
|
||||||
|
<td>PLSACOR11T (CBCS)</td>
|
||||||
|
<td>
|
||||||
|
Module I. Antiquity<br>
|
||||||
|
Plato: Philosophy and Politics, Theory of Forms, Justice, Philosopher King/Queen, Communism; Critique of Democracy; Women and Guardianship, Censorship<br>
|
||||||
|
Aristotle: Virtue, Citizenship, Justice, State and Household - Classification of governments; man as zoon politikon
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>V</td>
|
||||||
|
<td>PLSACOR12T (CBCS)</td>
|
||||||
|
<td>
|
||||||
|
Module I. Traditions of Pre-colonial Indian Political Thought<br>
|
||||||
|
a. Brahmanic and Shramanic<br>
|
||||||
|
b. Islamic and Syncretic
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>V</td>
|
||||||
|
<td>PLSADSE01 (CBCS)</td>
|
||||||
|
<td>
|
||||||
|
Module III.<br>
|
||||||
|
a. Gandhi on Women‘s Development and on Women‘s Movement<br>
|
||||||
|
b. Gandhi on peace and Preservation of Nature
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>V</td>
|
||||||
|
<td>PLSADSE02T (CBCS)</td>
|
||||||
|
<td>
|
||||||
|
Module 1. Approaches to understanding Patriarchy<br>
|
||||||
|
• Feminist theorizing of the sex/gender distinction. Biologism versus social constructivism
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>V</td>
|
||||||
|
<td>PLSGDSE01T (CBCS)</td>
|
||||||
|
<td>
|
||||||
|
Module II. Gandhian Thought: Theory and Action:<br>
|
||||||
|
a. Theory of Satyagraha<br>
|
||||||
|
Module III.<br>
|
||||||
|
a. Gandhi on Women‘s Development and on Women‘s Movement<br>
|
||||||
|
b. Gandhi on peace and Preservation of Nature
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>V</td>
|
||||||
|
<td>PLSSSEC01M (CBCS)</td>
|
||||||
|
<td>
|
||||||
|
Outline of the Legal system in India<br>
|
||||||
|
Brief understanding of the laws applicable in India<br>
|
||||||
|
Critical Understanding of the Functioning of the Legal System
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>I.</td>
|
||||||
|
<td>Participated in the Short Term Course- titled 'Soft Skill Development and Conflict Management', Jointly organized by Ramkrishna Sarada Mission Vivekananda Vidyabhavan and Centre for Counselling Services & Studies in Self Development, Jadavpur University, from 27.04.2016 to 04.05.2016.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>II.</td>
|
||||||
|
<td>Resource Person at Ph.D Coursework on ‘Research Methodology (Analysing of social data)’, at Department of Political Science, West Bengal State University, Kolkata, March 11 & 12, 2015.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>III.</td>
|
||||||
|
<td>Acting YPC Judge at Habra Municipality, BDO: Habra-I Block, Ashoke Nagar Municipality & Divisional Level YPC Competition at Mahatma Gandhi High School at Barasat, 2015-2016 & 2016-2017 & Acting YPC Judge in Nadia District YPC Competition 2017-2018, held at Muragachha Government College on 12th September, 2017.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>IV.</td>
|
||||||
|
<td>Life Member of Indian Political Science Association (2016 to Till Date), West Bengal Political Science Association (2009 to Till Date), Itihas Academy Dhaka, Dhaka, Bangladesh (23rd February, 2018 to Till Date) & Alumni Association, Jadavpur University (2016 to Till Date).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>V.</td>
|
||||||
|
<td>Guest Faculty, Department of Political Science, West Bengal State University, West Bengal, 2015 & 2018 to till date.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
680
faculty/dr-chinmay-biswas.php
Normal file
680
faculty/dr-chinmay-biswas.php
Normal file
@@ -0,0 +1,680 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">DR. CHINMAY BISWAS</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Associate Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc(Honours), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:chinmay.anthro@scc.ac.in" class="fw-bold">chinmay.anthro@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: SOCIAL CULTURAL ANTHROPOLOGY </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Anthropology of Communication, Ethnography </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-journal-tab" data-bs-toggle="pill" data-bs-target="#v-pills-journal" type="button" role="tab" aria-controls="v-pills-journal" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/news.svg" alt="" />Journal Publication </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-paper-tab" data-bs-toggle="pill" data-bs-target="#v-pills-paper" type="button" role="tab" aria-controls="v-pills-paper" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/paper.svg" alt="" />Paper Presentation </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-award-tab" data-bs-toggle="pill" data-bs-target="#v-pills-award" type="button" role="tab" aria-controls="v-pills-award" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button> -->
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-hand-tab" data-bs-toggle="pill" data-bs-target="#v-pills-hand" type="button" role="tab" aria-controls="v-pills-hand" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/hand.svg" alt="" />Membership </button> -->
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>SL NO.</th>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2000</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>
|
||||||
|
<p>Anthropology</p>
|
||||||
|
<p>Modernization of Traditional means of Communication system among the tribals of north 24 Parganas, W.B: An Anthropological study</p>
|
||||||
|
</td>
|
||||||
|
<td>Visva-Bharati, Santiniketan</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>ASSISTANT PROFESSOR</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA, NORTH 24 PARGANAS, W.B</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Continuing</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-journal" role="tabpanel" aria-labelledby="v-pills-journal-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">JOURNAL PUBLICATION</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Published On</th>
|
||||||
|
<th>Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Observation of microwave plasmons in one-dimensional conjugated polymer chain. B Mondal, D Majumdar and S K Saha Appl. Phys. Lett. 94 (2009) 183109.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mechanism of Ultrasonic Energy-Assisted Formation of V-, Y-Shaped Nano-Structures in Conjugated Polymers D Majumdar R P Maity, S Basu, and S K Saha J. Nano Sc. & Nanotech. 9 (2009) 6896-6901.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Graphene quantum sheet: A new material for spintronic application. S K Saha, M Baskey, D Majumdar. Adv. Mater. 22 (2010) 5531.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Observation of ferroelectric response in conjugated polymer nanotubes. D Majumdar and S K Saha Appl. Phys. Lett., 96 (2010) 183113.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Poly(3-hexylthiophene) nanotubes with superior electronic and optical properties. D Majumdar and S K Saha Chem. Phys. Lett., 489 (2010) 219.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Synthesis of single crystalline micron-sized rectangular silver bar. B Mondal, D Majumdar and S K Saha, J. Mater. Research. 25 (2010) 383.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Nanotechnology: Its current scope and prospect Dipanwita Majumdar Acad. J Aureole Vol 3(2), (2011) 114-119.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Epitaxial growth of crystalline polyaniline on reduced graphene oxide D Majumdar M Baskey, S K Saha Macromol. Rapid Commun. 32 (2011) 1277.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Graphene and its composites as supercaps. Dipanwita Majumdar Acad. J Aureole 4, (2013) 11-16.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Reduced Graphene Oxide: An Efficient Supercapacitor Material. Dipanwita Majumdar Academic J. Aureole, 5 (2014) 42-46.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Graphene-MnO2 Composite as Electrocatalyst for Oxygen Reduction Reactions. Dipanwita Majumdar Academic J. Aureole, 6&7(1) (2015-16) 31-37.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Charge Transport in Polypyrrole Nanotubes. Dipanwita Majumdar, S.K. Saha J. Nanosci. Nanotechnol. 15 (2015) 9975-9981.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Graphene-Polyaniline nanocomposites as Proficient Energy Storage Material-An Overview. Dipanwita Majumdar Innovative Energy & Research 5 (2016) 2.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Sonochemically Synthesized Beta-Cyclodextrin Functionalized Graphene Oxide and its Efficient Role in Adsorption of Water Soluble Brilliant Green Dye. Dipanwita Majumdar J Environ Anal Toxicol 6 (2016) 5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Hydroxy functionalized Graphene: A Proficient Energy Storage Material, Dipanwita Majumdar and Sujata Pal, J Fundam. Renewable Energy Appl., 6 (2016) 209.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Microwave-assisted synthesis of Mn2O3 porous balls as bifunctional electrocatalyst for oxygen reduction and evolution reaction Dipanwita Majumdar, et al Catal. Sci. Technol., 6(5) (2016) 1417-1429.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Synthesis, characterization and electrochemical study of hydroxy-functionalized graphene/MnO2 nanocomposite D Majumdar, SK Bhattacharya Materials Today: Proceedings 3 (10), 3872-3877.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Sonochemically synthesized hydroxy-functionalized graphene-MnO2 nanocomposite for supercapacitor applications. Dipanwita Majumdar, and Swapan K Bhattacharya J Appl Electrochem 47 (2017) 789-801.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Proficiency of graphene oxide in adsorption and removal of methylene blue from water: An overview. Dipanwita Majumdar J Environ Chem Toxicol 1 (2017) 4-8.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Detoxification of Heavy Metal ion-contaminated Drinking Water by Green Technology - A Short Overview. Dipanwita Majumdar Current Green Chemistry 4 (2017) 38-44.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Functionalized Graphene-MnO2 nanocomposite in Fuel Cell Applications Dipanwita Majumdar Asian Journal of Science and Technology, 8(3),(2017) 4394-4398.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Ultrasound assisted formation of reduced graphene oxide-copper (II) oxide nanocomposite for energy storage applications Dipanwita Majumdar, Nirmal Baugh, and Swapan K Bhattacharya Colloids and Surfaces A: Physicochem. Eng. Aspects 512 (2017) 158-170.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>An Overview on Ruthenium Oxide Composites-Challenging Material for Energy Storage Applications D Majumdar Materials Science Research India 15(1) ,(2018) 30-40.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Anodic Oxidation of Butan-1-ol on Reduced Graphene Oxide-Supported-Pd-Ag-Nanoparticles/ Nanoalloy for Fuel Cell Applications Ankita Mahajan, Senjuti Banik, Dipanwita Majumdar and Swapan Kumar Bhattacharya ACS Omega, 4 (2019) 4658-4670.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Temperature Control Synthesis of Platinum Nanoparticle-Decorated Reduced Graphene Oxide for Electrocatalytic Oxidation of Methanol. Senjuti Banik; Ankita Mahajan; Apurba Ray; Dipanwita Majumdar; Sachindranath Das; Swapan Kumar Bhattacharya Flat Chem (2019) Flat Chem 16 (2019) 100111.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis and characterization of biopolymer based hybrid hydrogel nanocomposite and study of their electrochemical efficacy. Arindam Giri, Rahul Bhowmick, Chandraday Prodhan, Dipanwita Majumdar, Swapan Kumar Bhattacharya M Ali International Journal of Biological Macromolecules.123 (2019) 228-238.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Engineering of Gadolinium-Decorated Graphene Oxide Nanosheets for Multimodal Bioimaging and Drug Delivery. Nitya Chawda, Mainak Basu, Dipanwita Majumdar, Raju Poddar, Santosh Kumar Mahapatra, Indrani Banerjee, ACS OMEGA 4(2019) 12470-12479.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Optimization of physicochemical and dielectric features in the conductive copolymers of aniline and 2-aminophenol US Waware, AMS Hamouda, D Majumdar Polymer Bulletin 76 (11), 5603-5617.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review on V2O5 and Its Carbon-Based nanocomposites as Supercapacitor Electrode Materials. Dipanwita Majumdar, Manas Mandal and Swapan Kumar Bhattacharya ChemElectroChem 2019, 6, 1623. (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review of Recent Progress in Ruthenium Oxides based Composites for Supercapacitor Applications. Dipanwita Majumdar, Thandavarayan Maiyalagan, Zhongqing Jiang ChemElectroChem 6 (2019) 4343 (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Magnetic, pseudocapacitive and H2O2-electrosensing properties of self assembled superparamagnetic Co0.3Zn0.7Fe2O4 with enhanced saturation magnetization Rituparna Mondal, Koyel Sarkar, Subhrajyoti Dey, Dipanwita Majumdar, Swapan Bhattacharya, Pintu Sen, Sanjay Kumar, ACS Omega 47 (2019) 12632-12646.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis, characterization and physicochemical studies of copolymers of aniline and 3 nitroaniline Umesh Somaji Waware, A. M. S. Hamouda, Dipanwita Majumdar Polym. Bull. (2019). pp1-20 DOI: https://doi.org/10.1007/s00289-019-02957-y.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Journey from Supercapacitor to Supercapatteries: Recent advancements in electrochemical energy storage system, D Majumdar et al. Emergent Materials, Springer, ISSN : 2522-574X, https://doi.org/10.1007/s42247-020-00090-5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Review on Current Progress of MnO2-based Ternary Nanocomposites for Supercapacitor Applications, D Majumdar, Chemelectrochem, Wiley, doi: https://doi.org/10.1002/celc.202001371.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent advancements of copper oxide based nanomaterials for supercapacitor applications D Majumdar, S Ghosh Journal of Energy Storage, 101995, https://doi.org/10.1016/j.est.2020.101995.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent progress in copper sulfide based nanomaterials for high energy supercapacitor applications D Majumdar Journal of Electroanalytical Chemistry, https://doi.org/10.1016/j.jelechem.2020.114825.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Majumdar D. Role of MXenes/Polyaniline Nanocomposites in Fabricating Innovative Supercapacitor Technology. Advanced Energy Conversion Materials [Internet]. 2021 Nov. 20 [cited 2022 Jan. 13]; 3(1): 30-53. Available from: https://ojs.wiserpub.com/index.php/AECM/article/view/1148, https://doi.org/10.37256/aecm.3120221148.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Kinsuk Das, Dipanwita Majumdar, Prospects of MXenes/graphene nanocomposites for advanced supercapacitor applications, Journal of Electroanalytical Chemistry, Volume 905, 2022, 115973, ISSN 1572-6657, https://doi.org/10.1016/j.jelechem.2021.115973.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Room Temperature Synthesis of Perovskite Hydroxide, MnSn(OH)6: A Negative Electrode for Supercapacitor Authors Manas Mandal, Krishna Chattopadhyay, Malay Chakraborty, Wonjae Shin, Kamal Kanti Bera, Sujit Chatterjee, Akbar Hossain, Dipanwita Majumdar, Arup Gayen, Changwoon Nah, Swapan Kumar Bhattacharya Publication date 2022/11 Journal Electronic Materials Letters Volume 18 Issue 6 Pages 559-567 Publisher The Korean Institute of Metals and Materials.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Recent Developments of Methanol Electrooxidation Using Nickel-based Nanocatalysts Authors Dipanwita Majumdar, Swapan Kumar Bhattacharya Publication date 2022/10/26 Source ChemistrySelect Volume 7 Issue 40 Pages e202201807.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Graphitic Carbon Nitride (g-C3N4): A Proficient Electrode Material for Flexible Supercapacitors Authors Rudra Sarkar and Munmun Mondal & Dipanwita Majumdar Publication date 2023/12/7 Journal Advanced Materials Science and Technology Volume 5 Issue 2 Pages https://doi.org/10.37155/2717-526X-0502-.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Author</th>
|
||||||
|
<th>Title of the Paper</th>
|
||||||
|
<th>ISSN No</th>
|
||||||
|
<th>Name of the Journal</th>
|
||||||
|
<th>DOI</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Dr. Chinmay Biswas, Banasree Roy, Dr. Abhijit Das</td>
|
||||||
|
<td>The Organisation of Production among the Ice-cream factory workers of Bira Bandhabpally, North 24 PGS, W.B., India: An anthropological perspective</td>
|
||||||
|
<td>ISSN 1973 – 2880</td>
|
||||||
|
<td>Antrocom Journal of Anthropology</td>
|
||||||
|
<td><a href="http://www.antrocom.net">http://www.antrocom.net</a></td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Mandrita Sarkar, Chinmay Biswas, Abhijit Das</td>
|
||||||
|
<td>An Essay on “Structure and Function in Primitive Society” of A.R. Brown</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Antrocom Journal of Anthropology</td>
|
||||||
|
<td><a href="http://www.antrocom.net">http://www.antrocom.net</a></td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Dr. Chinmay Biswas</td>
|
||||||
|
<td>Application of SET Theory in the Study of Oraon Festivals</td>
|
||||||
|
<td>2642-8237</td>
|
||||||
|
<td>Peer-reviewed, Journal of Cultural and Social Anthropology Volume 3, Issue -1</td>
|
||||||
|
<td><a href="https://doi.org/10.22259/2642-8237.0301001">https://doi.org/10.22259/2642-8237.0301001</a></td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Dr. Chinmay Biswas</td>
|
||||||
|
<td>MODERN PERSPECTIVES OF GENEALOGY IN ANTHROPOLOGY</td>
|
||||||
|
<td>ISSN :- 2582-9637</td>
|
||||||
|
<td>Bi-annual peer-reviewed Journal of Cultural and Social Anthropology Vol-1, No-2</td>
|
||||||
|
<td><a href="www.arfjournals.com">www.arfjournals.com</a></td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Dr. Chinmay Biswas</td>
|
||||||
|
<td>A Short Enquiry on Social Anthropology in Mathematics</td>
|
||||||
|
<td>ISSN 2473-4772</td>
|
||||||
|
<td>Anthropology – Open Journal (ANTPOJ) International</td>
|
||||||
|
<td><a href="http://dx.doi.org/10.17140/ANTPOJ-5-127">http://dx.doi.org/10.17140/ANTPOJ-5-127</a></td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Dr. Chinmay Biswas</td>
|
||||||
|
<td>Tradition to Modernity: An Anthropological Study on Song and Dance of ‘Urban Oraon’ at the District of North 24 Parganas in West Bengal</td>
|
||||||
|
<td>ISSN 2277-436X, eISSN 2632-4369</td>
|
||||||
|
<td>Journal of the Anthropological Survey of India (Sage Journal)</td>
|
||||||
|
<td><a href="https://doi.org/10.1177/2277436X20180204">https://doi.org/10.1177/2277436X20180204</a></td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Dr. Chinmay Biswas</td>
|
||||||
|
<td>A study on Ethnography of communication: A discourse analysis with Hymes ‘speaking model’</td>
|
||||||
|
<td>ISSN 2222-1735 (Paper), ISSN 2222-288X (Online)</td>
|
||||||
|
<td>Journal of Education and Practice</td>
|
||||||
|
<td><a href="http://www.iiste.org/">http://www.iiste.org/</a></td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Dr. Chinmay Biswas</td>
|
||||||
|
<td>Environmental Pollution Slightly Changed the Occupation: Study on Arsenic Affected Area in North 24 Parganas, West Bengal</td>
|
||||||
|
<td>ISSN 0393 - 9383</td>
|
||||||
|
<td>INTERNATIONAL JOURNAL OF ANTHROPOLOGY</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Dr. Chinmay Biswas, Dr. Abhijit Das</td>
|
||||||
|
<td>Ethnography: A Qualitative Research Paradigm</td>
|
||||||
|
<td>ISBN 978-81-976007 (Print)</td>
|
||||||
|
<td>B.P International (India, United Kingdom)</td>
|
||||||
|
<td><a href="https://doi.org/10.9734/bpi/cpassr/v2/786">https://doi.org/10.9734/bpi/cpassr/v2/786</a></td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-paper" role="tabpanel" aria-labelledby="v-pills-paper-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Paper Presentation</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Paper Title</th>
|
||||||
|
<th>Organizer</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2010</td>
|
||||||
|
<td>2010: Oral Presentation: on "Formation Dynamics of V- and Y-shaped Polyaniline nanowires". 4-5th Feb, 2010 (UGC sponsored National Seminar: EMERGING CONCERNS AND ADVANCES IN CHEMISTRY).</td>
|
||||||
|
<td>Lady Brabourne College (Kolkata)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Jan.2011</td>
|
||||||
|
<td>2011: Poster presentation: on "Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction". (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS).</td>
|
||||||
|
<td>Sree Gopal Banerjee College, Bagati, Mogra, Hooghly</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Jul.2013</td>
|
||||||
|
<td>2013: Oral Presentation: ON THE TOPIC "Nanopesticides: A Challenging Domain of Current Research" by D Majumdar 2013. (National Conference).</td>
|
||||||
|
<td>Panchkot Mahavidyalaya, Purulia</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Aug.2015</td>
|
||||||
|
<td>2015: Poster presentation: on "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Graphene Oxide-Copper (II) Oxide composites." on 1-2nd August, 2015. (National Conference/ National Symposium).</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.Dec.2015</td>
|
||||||
|
<td>2015: Poster presentation: NANOS 2015- International conference on the topic "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Reduced-Graphene Oxide-Copper (II) Oxide composites."</td>
|
||||||
|
<td>GITAM University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2016</td>
|
||||||
|
<td>2016: Poster presentation: on the topic "Role of beta-cyclodextrin-functionalized graphene oxide in removal of organic-dye water pollutants." (National Conference).</td>
|
||||||
|
<td>Dept of Chemistry, Burdwan University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.Mar.2016</td>
|
||||||
|
<td>2016: Poster presentation: ICMRA 2016- "Synthesis, Characterization and Electrochemical Study of Hydroxy-Functionalized Graphene/MnO2 nanocomposite" (International Conference).</td>
|
||||||
|
<td>CMR Technical Campus, Hyderabad</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.May.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Synthesis, Characterization and Electrochemical Studies of hydroxy functionalized Graphene-MnO2 Nanocomposite" Dipanwita Majumdar INTERNATIONAL CONFERENCE ON NANOTECHNOLOGY FOR BETTER LIVING (ICNBL-2016) (25/5/2016 -29/5/2016 NIT SRINAGAR AND IIT KANPUR.</td>
|
||||||
|
<td>NIT SRINAGAR, JAMMU AND KASHMIR</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Tuning of Charge Transport Properties in Polypyrrole Nanotubes" Dipanwita Majumdar UGC sponsored ONE DAY National Seminar 2016 RECENT ADVANCES IN LIFE SCIENCE IN THE LIGHT OF CHEMISTRY.</td>
|
||||||
|
<td>Bethune College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation on "Adsorption and Removal of Water Soluble Methylene Blue Dye by Beta-Cyclodextrin Functionalized Graphene Oxide" Dipanwita Majumdar UGC sponsored National Seminar 2016 ENTHRALLING FACETS OF MOLECULAR MANIFESTATION IN CHEMICAL SCIENCES.</td>
|
||||||
|
<td>Bidhannagar College, SALTLAKE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: Role of Sonochemically synthesized Beta-Cyclodextrin Functionalized Graphene Oxide in Adsorption of Water Soluble Brilliant Green Dye: Dipanwita Majumdar UGC sponsored National Seminar 2016 on RECENT TRENDS IN CHEMICAL RESEARCH.</td>
|
||||||
|
<td>Sarojini Naidu College for Women and Hiralal Mazumdar College for Women</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.Nov.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Adsorption and Removal of Soluble Methylene Blue Dye from Water by Sorbefacient Graphene Oxide" Dipanwita Majumdar UGC-Sponsored two day National Seminar on "MODERN TRENDS IN CHEMICAL SCIENCES".</td>
|
||||||
|
<td>Dept of Chemistry, Narasinha Dutt College and Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.Aug.2018</td>
|
||||||
|
<td>2018: Poster presentation: Recent Advancements of RuO2/Functionalized-Graphene Composites for Supercapacitor Applications By Dipanwita Majumdar at Recent Advances in Molecules and Materials: RA2M 2018' (International Conference).</td>
|
||||||
|
<td>School of Applied Science & Humanities, Haldia Institute of Technology, Haldia-721657 and Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Jan.2019</td>
|
||||||
|
<td>2019: Poster presentation: Supercapatteries: A Revolution in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference on Advances in Nanomaterials and Devices for Energy and Environment (ICAN-2019) (International Conference).</td>
|
||||||
|
<td>Advanced Materials and Nano-electronics Research Group of CNT Lab, in ABV-IIITM, Gwalior</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Mar.2019</td>
|
||||||
|
<td>2019: Oral presentation: Supercapacitors to Supercapatteries: Renaissance in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference of Emerging Technologies and Sustainable Development 2019 (ICETSD '19)(International Conference).</td>
|
||||||
|
<td>Government College of Engineering and Leather Technology, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08.Jan.2020</td>
|
||||||
|
<td>2020: Two-Day International Seminar on "Innovation, Expansion, Impacts and Challenges in Chemical and Biological Sciences" to be held on 8-9th January, 2020.</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Feb.2020</td>
|
||||||
|
<td>2020: National Symposium on Renewable Energy for Sustainable Future: Materials & Technology Development at Heritage Institute of Technology on 27/02/2020 on : Recent progress of supercapacitors.</td>
|
||||||
|
<td>Heritage Institute of Technology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>RC - Inter/Multi-disciplinary Refresher Course in Environmental Studies & Disaster Management</td>
|
||||||
|
<td>UGC-MALAVIYA MISSION TEACHER TRAINING CENTRE (MMTTC), MORABADI CAMPUS, RANCHI UNIVERSITY, RANCHI – 834008 (Jharkhand)</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Course</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Subjects</td>
|
||||||
|
<td>NEP-I (H&G), NEP-III, CBCS-V&VI</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-award" role="tabpanel" aria-labelledby="v-pills-award-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Award Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Qualified in nationally competitive examination, JAM -2005, conducted by Indian Institute of Technology (IIT), All India Rank-162</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, CSIR-UGC NET - 2006, conducted jointly by Council of Scientific and Industrial Research (CSIR) and University Grants Commission (UGC), Govt. of India, 2006, December for lectureship and research fellowship. Selected for SPM interview under CSIR.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2006, conducted by Indian Institute of Technology (IIT), All India Rank-281</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2007, conducted by Indian Institute of Technology (IIT), All India Rank-12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Poster award for the presentation: on “Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction”. (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS At Sree Gopal Banerjee College, Bagati, Mogra, Hooghly, West Bengal)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>2nd best poster presentation at International Conference on Materials Research and Applications (ICMRA-2016) from 11-13 March 2016 @ CMR TECHNICAL CAMPUS, Kandlakoya (V), Medchal (M), RR Dist, Telangana, India-501401, (Approved by AICTE, New Delhi, Affiliated to JNTU, Hyderabad.)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>3rd Young Women Scientist paper presentation at International Conference on Nanotechnology for Better Living, 2016 jointly organized by IIT Kanpur and NIT Srinagar at Srinagar, J&K, India on 25-29th May, 2016.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Research Excellence Award-2021, InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Young Researcher Award-2021 InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Women Researcher Award in the International Scientist Awards on Engineering, Science and Medicine by VDGOOD Professional Association</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Asia’s Science, Technology and Research Awards 2023 (ASTRA 2023) Outstanding Researcher Award in Materials Science</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-hand" role="tabpanel" aria-labelledby="v-pills-hand-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Membership</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
<th>Membership</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Moderator and Question Paper Setters of UG and PG Level CHEMISTRY COURSES IN various reputed Universities in India.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life Member at Indian Physical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life member of Indian Association for the Cultivation of Science, Jadavpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Reviewer of many reputed International peer-reviewed journals (Springer, Elsevier, Wiley)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>InSc Professional Member, Institute of Scholars, Department of Awards, Muddhinapalya Bengaluru-560091, Karnataka, India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Editorial Board Member of Peer-reviewed International Journal: Materials Science Research India for 2017 and 2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
332
faculty/dr-ikbal-azahar.php
Normal file
332
faculty/dr-ikbal-azahar.php
Normal file
@@ -0,0 +1,332 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr Ikbal Azahar</h3>
|
||||||
|
<!-- <p class="" style="font-weight: 500;"></p> -->
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc. Ph.d.</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:ikbal.bot@scc.ac.in" class="fw-bold">ikbal.bot@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9836564266</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Plant Breeding & Genetics</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Plant Stress Biology</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>CU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>WBSU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>KU</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Teacher</td>
|
||||||
|
<td>Vivekananda Nagar Vivekananda High School (HS)</td>
|
||||||
|
<td>17.01.2019</td>
|
||||||
|
<td>28.08.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>30.08.2019</td>
|
||||||
|
<td>Present</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>GATE</td>
|
||||||
|
<td>IIT</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>CSIR JRF</td>
|
||||||
|
<td>CSIR</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Doyel Roy, Sinchan Adhikari, Ayan Adhikari, Supriya Ghosh, Ikbal Azahar, Debapriya Basuli, Zahed Hossain</td>
|
||||||
|
<td>Impact of CuO nanoparticles on maize: Comparison with CuO bulk particles with special reference to oxidative stress damages and antioxidant defense status</td>
|
||||||
|
<td>Chemosphere</td>
|
||||||
|
<td>287</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Ikbal Azahar, Supriya Ghosh, Ayan Adhikari, Sinchan Adhikari, Doyel Roy, Arun K Shaw, Kashmir Singh, Zahed Hossain</td>
|
||||||
|
<td>Comparative analysis of maize root sRNA transcriptome unveils the regulatory roles of miRNAs in submergence stress response mechanism</td>
|
||||||
|
<td>Environmental and Experimental Botany</td>
|
||||||
|
<td>171</td>
|
||||||
|
<td>103924</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Ayan Adhikari, Sinchan Adhikari, Supriya Ghosh, Ikbal Azahar, Arun K Shaw, Doyel Roy, Sankhajit Roy, Suman Saha, Zahed Hossain</td>
|
||||||
|
<td>Imbalance of redox homeostasis and antioxidant defense status in maize under chromium (VI) stress</td>
|
||||||
|
<td>Environmental and Experimental Botany</td>
|
||||||
|
<td>169</td>
|
||||||
|
<td>103873</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Sinchan Adhikari, Ayan Adhikari, Supriya Ghosh, Doyel Roy, Ikbal Azahar, Debapriya Basuli, Zahed Hossain</td>
|
||||||
|
<td>Assessment of ZnO-NPs toxicity in maize: An integrative microRNAomic approach</td>
|
||||||
|
<td>Chemosphere</td>
|
||||||
|
<td>249</td>
|
||||||
|
<td>126197</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>FIP</td>
|
||||||
|
<td>HRDC-Mizoram University</td>
|
||||||
|
<td>4th July to 31st July 2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>RC</td>
|
||||||
|
<td>Goa University</td>
|
||||||
|
<td>18th September to 1st October 2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Biodiversity (Microbes, Algae, Fungi, Bryophytes, Pteridophytes, and Gymnosperms) (BOTMIN101/BOTCOR101)</td>
|
||||||
|
<td>Theory & Practical</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Plant Ecology and Taxonomy (BOTMIN202/BOTCOR202)</td>
|
||||||
|
<td>Theory & Practical</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Plant Anatomy and Embryology (BOTMIN303/BOTCOR303)</td>
|
||||||
|
<td>Theory & Practical</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Plant Physiology and Metabolism (BOTCOR404)</td>
|
||||||
|
<td>Theory & Practical</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Cell and Molecular Biology (BOTCOR505)</td>
|
||||||
|
<td>Theory & Practical</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Analytical Techniques in Plant Sciences (BOTCOR606)</td>
|
||||||
|
<td>Theory & Practical</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Floriculture and Gardening (BOTHSEC101M)</td>
|
||||||
|
<td>Theory</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Tissue Culture Technique and Micropropagation (BOTHSEC202M)</td>
|
||||||
|
<td>Theory</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
515
faculty/dr-jibananda-gayen.php
Normal file
515
faculty/dr-jibananda-gayen.php
Normal file
@@ -0,0 +1,515 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Jibananda Gayen</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, B.Ed, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:jibananda79@scc.ac.in" class="fw-bold">jibananda79@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">+918967694744</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Wetland Ecology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Wetland Ecological Health, Wetland Bio-diversity and Habitat Conservation, Water Quality Improvement, Wetland Soil Dynamics, Wetland landscape Modification, Carbon Sequestration</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2000</td>
|
||||||
|
<td>Geography(H), Economics, and Pol. Sc.</td>
|
||||||
|
<td>C.U./Bhairab Ganguly College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2002</td>
|
||||||
|
<td>Geography, Cartography (Specialization)</td>
|
||||||
|
<td>C.U./ Ballygunge Science College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed.</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Geography, Economics</td>
|
||||||
|
<td>C.U./Alipore Campus</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PG Diploma</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>RS & GIS Geomatics</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Wetland Ecology</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Teacher</td>
|
||||||
|
<td>Kaijuri High School (H.S.)</td>
|
||||||
|
<td>20.09.2002</td>
|
||||||
|
<td>11.10.2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Assistant Teacher</td>
|
||||||
|
<td>Jafrabad Swami Vivekananda Vidyapeeth (H.S.)</td>
|
||||||
|
<td>12.10.2007</td>
|
||||||
|
<td>06.04.2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>07.04.2010</td>
|
||||||
|
<td>Till today</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>UGC Minor Research Project</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>UGC Travel Grant Allowance</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Geo-Environmental Appraisal of Wetlands of Ichhamati Flood Plain in Bangaon sub-division, West Bengal: Spatial Modeling Using GIS</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.</td>
|
||||||
|
<td>Gayen, J., & Datta, D.</td>
|
||||||
|
<td>Application of pressure-state-response approach for developing criteria and indicators of ecological health assessment of wetlands: A multi-temporal study in Ichhamati floodplains, India.</td>
|
||||||
|
<td>Ecological Processes</td>
|
||||||
|
<td>12</td>
|
||||||
|
<td>1-20</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02.</td>
|
||||||
|
<td>Datta, D., Bairagi, M., Dey, M., Pal, A. P., & Gayen, J.</td>
|
||||||
|
<td>Spatially explicit estimation of soil organic carbon stock of an estuarine mangrove wetland of eastern India using elemental analysis and very-fine resolution satellite data.</td>
|
||||||
|
<td>Ecological Processes</td>
|
||||||
|
<td>11</td>
|
||||||
|
<td>1-16</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.</td>
|
||||||
|
<td>Mazumder, S., Saha, J., Nandi, G., Naskar, M., Gayen, J., & Datta, D.</td>
|
||||||
|
<td>Long-term monitoring of cropland transformation in Kolkata Metropolitan Area, India using open-source geospatial technologies.</td>
|
||||||
|
<td>SN Applied Sciences</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>1-19</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.</td>
|
||||||
|
<td>Gayen, J., Ghosh, P. K., & Datta, D.</td>
|
||||||
|
<td>Avifauna habitability of wetlands in an intensive cultural landscape: Insights from the Ichhamati floodplains, India.</td>
|
||||||
|
<td>Environmental Monitoring and Assessment</td>
|
||||||
|
<td>19</td>
|
||||||
|
<td>1-16</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.</td>
|
||||||
|
<td>Gayen, J.</td>
|
||||||
|
<td>Assessing Correlation between Socio-economic Status and Body Mass Index: A Study of Khond of Visakhapatnam, Andhra Pradesh.</td>
|
||||||
|
<td>Concept Publishing Company Private Ltd.</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>152-163</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>06.</td>
|
||||||
|
<td>Sardar, R., & Gayen, J.</td>
|
||||||
|
<td>Chronic Kidney Disease a Global Public Health Problem: Approaches and Some Initiatives</td>
|
||||||
|
<td>International Journal of Experimental Research and Review (IJERR)</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>41-50</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>07.</td>
|
||||||
|
<td>Nandi, S., & Gayen, J.</td>
|
||||||
|
<td>An Eco-Feministic Approach to Access Natural Resources: A Case Study of Akaria & Shyampukur Village of Bankura District, W.B.</td>
|
||||||
|
<td>National Journal of Landscape Systems and Ecological Studies</td>
|
||||||
|
<td>34</td>
|
||||||
|
<td>115-120</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>UGC-Academic Staff College, Jadavpur University</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>The University of Burdwan, Human Resource Development Centre, UGC</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>NEHU, Shillong, Human Resource Development Centre, UGC</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Gayen, J.</td>
|
||||||
|
<td>Evaluating Human-induced Pressure on Ecological Health of Wetland: A Multi-Parameter Based Analysis in a Wetland Complex of the Ichhamati Floodplain, Eastern India</td>
|
||||||
|
<td>Sustaining Landscapes in The Anthropocene</td>
|
||||||
|
<td>IRALE (Indian Regional Association for Landscape Ecology)</td>
|
||||||
|
<td>2nd Symposium</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Gayen, J., & Datta, D.</td>
|
||||||
|
<td>Applying an Entropy and TOPSIS derived water quality index to assess the levels of anthropogenic stress in a wetland complex of Ichhamati floodplains, eastern India.</td>
|
||||||
|
<td>Transboundary Resource Management</td>
|
||||||
|
<td>Kenyatta University and International Association for Landscape Ecology (IALE), Nairobi, Kenya</td>
|
||||||
|
<td>11th World Congress</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>Gayen, J.</td>
|
||||||
|
<td>Assessment of wetland ecological health through Pressure-State-Response (PSR) model: A study of Ichhamati Floodplains in West Bengal, India</td>
|
||||||
|
<td>Landscape Health and Resilience</td>
|
||||||
|
<td>IRALE (Indian Regional Association for Landscape Ecology)</td>
|
||||||
|
<td>1st Symposium</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04</td>
|
||||||
|
<td>Gayen, J., & Datta, D.</td>
|
||||||
|
<td>Monitoring and Mapping of Avifauna diversity towards Assessment of Wetland Ecosystem Health: A Study of Ichhamati Floodplains in West Bengal, India</td>
|
||||||
|
<td>Nature and society facing the Anthropocene challenges and perspectives for landscape ecology</td>
|
||||||
|
<td>Italian Society of Landscape Ecology (SIEP) and International Association for Landscape Ecology (IALE), Milan, Italy</td>
|
||||||
|
<td>10th IALE World Congress</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05</td>
|
||||||
|
<td>Gayen, J., & Datta, D.</td>
|
||||||
|
<td>Evaluating Ecological Health of Wetlands at Human Environment Interface in Ichhamati Floodplains</td>
|
||||||
|
<td>Sustainable Rural Development-Geospatial Solutions</td>
|
||||||
|
<td>Bangalore University, Department of Geography & Geoinformatics</td>
|
||||||
|
<td>XIII DGSI International Geography Conference</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>06</td>
|
||||||
|
<td>Gayen, J., & Datta, D.</td>
|
||||||
|
<td>Evaluating water quality using water quality index at wetlands in Ichhamati floodplains, Bongaon Block, West Bengal</td>
|
||||||
|
<td>Global Water Crisis: Agriculture and Food Security in the era of Climate Change</td>
|
||||||
|
<td>Department of Geography, Faculty of Science, Aligarh Muslim University, Aligarh</td>
|
||||||
|
<td>International Conference</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>07</td>
|
||||||
|
<td>Gayen, J.</td>
|
||||||
|
<td>Migration and Health Scenarios of Bangladeshi Immigrants: Experiences from Habra Municipality, North 24 Parganas, West Bengal</td>
|
||||||
|
<td>Health Disparity and Health Equity: Indigenous People and Beyond</td>
|
||||||
|
<td>WBSU, Department of Anthropology and Sree Chaitanya College, Habra</td>
|
||||||
|
<td>International Conference</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08</td>
|
||||||
|
<td>Gayen, J., & Datta, D.</td>
|
||||||
|
<td>Effects of Unsustainable Livelihood Practices on Ecological Health of The Wetlands in Ichhamati Floodplains</td>
|
||||||
|
<td>Rural Habitat, Institutions and Development: Changing Nature & Challenges</td>
|
||||||
|
<td>Department of Geography, Tripura University</td>
|
||||||
|
<td>International Seminar & 48th Regional Science Conference</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09</td>
|
||||||
|
<td>Gayen, J., & Datta, D.</td>
|
||||||
|
<td>Assessment of Water Quality of Floodplain Wetlands of River Ichhamati and Its Environmental Impacts</td>
|
||||||
|
<td>Environment and Society: Historical Perspectives and Contextual</td>
|
||||||
|
<td>Department of Geography, Burdwan</td>
|
||||||
|
<td>2nd International Seminar</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Gayen, J., & Datta, D.</td>
|
||||||
|
<td>Analyzing the Impacts of Human Livelihood Practices on Ecological Health of the Wetlands in Ichhamati Floodplains</td>
|
||||||
|
<td>Changing Physico-cultural Landscape: Threats and Opportunities</td>
|
||||||
|
<td>Department of Geography, CU</td>
|
||||||
|
<td>National Seminar Under UGC DRS Phase II (SAP-I) Programme</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Geotectonics & Geomorphology (GEOACOR01T & GEOACOR01P)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Cartographic Techniques (GEOACOR02T & GEOACOR02P)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Human Geography (GEOACOR03T)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Cartograms and Thematic Mapping (GEOACOR04T & 4P)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Climatology (GEOACOR05T & 5P)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Geography of India (GEOACOR06T)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Statistical Methods in Geography (GEOACOR07T & 7P)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Regional Planning and Development (GEOACOR08T)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Economic Geography (GEOACOR09T)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Environmental Geography (GEOACOR10T & 10P)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Fieldwork and Research Methodology (GEOACOR11T & 11P)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Remote Sensing and GIS (GEOACOR12T & 12P)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Evolution of Geographical Thought (GEOACOR13T)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Disaster Management (GEOACOR14T & 14P)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Soil and Biogeography (GEOADSE01T)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Population Geography (GEOADSE03T)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>Hydrology and Oceanography (GEOADSE04T)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>Resource Geography (GEOADSE06T)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
485
faculty/dr-lina-sarkar.php
Normal file
485
faculty/dr-lina-sarkar.php
Normal file
@@ -0,0 +1,485 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">DR. LINA SARKAR</h3>
|
||||||
|
<p class="" style="font-weight: 500;">ASSOCIATE PROFESSOR</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:sarkarlina321@gmail.com" class="fw-bold">sarkarlina321@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: CYTOGENETICS AND FISHERY </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: ECOLOGY OF RIVER AND STUDY OF ICHTHYOFAUNAL DIVERSITY </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.(H)</td>
|
||||||
|
<td>1990</td>
|
||||||
|
<td>ZOOLOGY(H), BOT., CHEM.</td>
|
||||||
|
<td>CALCUTTA UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>1993</td>
|
||||||
|
<td>CYTOGENETICS (SPL. PAPER)</td>
|
||||||
|
<td>UNIVERSITY OF NORTH BENGAL</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed.</td>
|
||||||
|
<td>1995</td>
|
||||||
|
<td>MENTAL HYGIENE(SPL. PAPER), EDUCATION, LIFE SC., PHY. SC.</td>
|
||||||
|
<td>CALCUTTA UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Ed.</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>EDUCATION</td>
|
||||||
|
<td>CALCUTTA UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Associate Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>April 4th.2010</td>
|
||||||
|
<td>Till Now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>BEST YOUNG SCIENTIST AWARD in the session ‘Biodiversity: Emerging Perspective’ in the National Seminar on “Dimensions in Zoological Research in Human Welfare” </td>
|
||||||
|
<td>Zoological society in collaboration with University of Calcutta</td>
|
||||||
|
<td>March23-25,2007</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Analysis of Fish faunal Diversity and Water quality of Jamuna river in South Bengal region, India With an Assessment of Water Quality Index [Annexure 3.3]</td>
|
||||||
|
<td>30,000/- (Thirty thousand only)</td>
|
||||||
|
<td>14.12.15</td>
|
||||||
|
<td>14.12.16</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Diamond Jubilee research grant, Sree Chaitanya College, Habra. SCC/DJRD/SCOF/</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Minor Project. Study of Conservation Status and pollution effects of economically important aquatic resources with references to fisheries and fish meal.</td>
|
||||||
|
<td>50,000/-</td>
|
||||||
|
<td>22.2.21</td>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>Sree Chaitanya College, R and D cell.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Sarkar, L. and Yadav, B.E</td>
|
||||||
|
<td>Larvivorous fishes of Western Ghats, Maharashtra: Biocontrol of Malaria.</td>
|
||||||
|
<td>Geobios new Reports</td>
|
||||||
|
<td>15(2)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>On a collection of fish from the headwater of Damodar river</td>
|
||||||
|
<td>Rec. Zool. Surv. India</td>
|
||||||
|
<td>97 (Part 2)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Sarkar, L. and Banerjee, S</td>
|
||||||
|
<td>Ichthyofauna of Damodar river system.</td>
|
||||||
|
<td>Proc. Zool. Soc. Calcutta</td>
|
||||||
|
<td>53(1)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Sarkar, L. and Banerjee, S</td>
|
||||||
|
<td>Seasonal Distribution of Ichthyofauna in reservoirs of the Damodar river system.</td>
|
||||||
|
<td>Ecology and Conservation of Lakes, Reservoirs and Rivers. ABD Publisher Jaipur, India</td>
|
||||||
|
<td>Vol.1</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Sarkar, L. and Banerjee, S</td>
|
||||||
|
<td>Breeding ground profile of food fish species in Damodar River System.</td>
|
||||||
|
<td>International Journal of Biology</td>
|
||||||
|
<td>Vol. 2 No.1</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>Sarkar, L. and Banerjee, S</td>
|
||||||
|
<td>Diversity and Distribution of Fishes in Damodar River System (India) in Relation to Hydrological Variation and Anthropological Stress</td>
|
||||||
|
<td>Lap Lambert Academic Publishing</td>
|
||||||
|
<td>ISBN: 978-3-659-18484-0</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>Seasonal fish faunal diversity and water quality of Jamuna River in South Bengal region</td>
|
||||||
|
<td>International Journal of Zoological Studies</td>
|
||||||
|
<td>3(1)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>Noise pollution level in Central and South Kolkata, West Bengal.</td>
|
||||||
|
<td>International Journal of Advanced Research and Development</td>
|
||||||
|
<td>3(1)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>Determination of Heavy Metal concentration in Fish Muscle Tissue (Labeo ata, Mastacembelus armatus) and Water from Konar River and Barakar River and Tenughat Reservoir.</td>
|
||||||
|
<td>Environment and Ecology</td>
|
||||||
|
<td>38 (4)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>STUDY OF DIVERSITY OF ORNAMENTAL FISHES FROM SOME SELECTED SITES OF DAMODAR RIVER SYSTEM</td>
|
||||||
|
<td>J. Environ. & Sociobiol</td>
|
||||||
|
<td>17(1)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>Effect of seasonal drought on Ichthyofauna of a rainfed river.</td>
|
||||||
|
<td>Emerging Concepts in Chemical and Biological Sciences, Lincoln Research and Publications Limited, Australia in Collaboration with Lincoln University College, Malaysia</td>
|
||||||
|
<td>doi:10.46977/book.2020.eccbs</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>Study of Bird Diversity of Three Villages of Amer Tehsil—District.</td>
|
||||||
|
<td>Environment and Ecology</td>
|
||||||
|
<td>39 (2), Published on 20 June 2021, ISSN 0970-0420</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>Ichthyofaunal diversity of Mridangabhanga River.</td>
|
||||||
|
<td>Environment and Ecology</td>
|
||||||
|
<td>39(4A), Published on: 05.12.2021, ISSN 0970-0420</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>Study of Fish diversity of a Major Distributary of River Ganga that needs proper management and rehabilitation.</td>
|
||||||
|
<td>Lincoln University College, Wisma Lincoln, Malaysia</td>
|
||||||
|
<td>https://doi.org/10.31674/book.2023tcbr008, ISBN 978-967-2819-20-2, doi:10.46977/book.2020.eccbs</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>Study of fish fauna of Bhairavi River.</td>
|
||||||
|
<td>International Journal of Research in Management and Social Science</td>
|
||||||
|
<td>Vol. 11 Issue 1 (1), ISSN 2322-0899</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16.</td>
|
||||||
|
<td>Sarkar, Lina</td>
|
||||||
|
<td>FISH SPECIES DIVERSITY OF LOWER STRETCH OF RIVER DAMODAR WITH REFERENCES TO POLLUTION EFFECT</td>
|
||||||
|
<td>Lincoln University College, Malaysia</td>
|
||||||
|
<td>ISBN: 978-967-2819-31-8, eISBN: 978-967-2819-32-5, Sustainable Chemical Insight in Biological Exploration</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>ORIENTATION PROGRAMME NO.95</td>
|
||||||
|
<td>UGC ACADEMIC STAFF COLLEGE, UNIVERSITY OF CALCUTTA</td>
|
||||||
|
<td>23.6.12 - 21.7.12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>REFRESHER COURSE LIFE SCIENCE</td>
|
||||||
|
<td>UGC ACADEMIC STAFF COLLEGE, UNIVERSITY OF CALCUTTA</td>
|
||||||
|
<td>22.11.13 - 13.12.13</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>REFRESHER COURSE INTERNATIONAL RELATIONS (MULTIDISCIPLINARY)</td>
|
||||||
|
<td>UGC ACADEMIC STAFF COLLEGE, UNIVERSITY OF RAJASTHAN</td>
|
||||||
|
<td>28.05.18 - 16.06.18</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>REFRESHER COURSE (INTERDISCIPLINARY)</td>
|
||||||
|
<td>UGC HUMAN RESOURCE DEVELOPMENT CENTER, BABA SAHEB AMBEDKAR MARATHWADA UNIVERSITY, AURANGABAD</td>
|
||||||
|
<td>14.09.2020 - 26.09.2020</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title of the Seminar</th>
|
||||||
|
<th>Sponsored by</th>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Venue</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>SristiBaichitre Rabindranath</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>10.01.11-11.01.11</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Biodiversity: Interrelationship between Flora, Fauna and Human</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>29.09.13-30.09.13</td>
|
||||||
|
<td>Mrinalini Dutta Mahavidyapith</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>Mystery of Netaji’s Disappearance: From Formosa to Faizabad</td>
|
||||||
|
<td>Dept. of Political Science, SCC, Habra</td>
|
||||||
|
<td>09.09.14</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04</td>
|
||||||
|
<td>Biocultural Perspective of Health Care in Society</td>
|
||||||
|
<td>Dept. of Anthropology, SCC, Habra</td>
|
||||||
|
<td>23.12.14</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05</td>
|
||||||
|
<td>Projapatir Katha</td>
|
||||||
|
<td>Dept. of Zoology, SCC, Habra</td>
|
||||||
|
<td>03.03.15</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>06</td>
|
||||||
|
<td>Indian Parliament at Crossroads</td>
|
||||||
|
<td>Dept. of Parliamentary Affairs, Govt. of West Bengal</td>
|
||||||
|
<td>28.11.17</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Semester I: ZOODSC101T, ZOODSC101P, DS-1 (5) - Non-Chordates I, Non-Chordates I Lab (3,2)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Semester II: ZOODSC202T, ZOODSC202P, DS-2 (5) - Non-Chordates II, Non-Chordates II Lab (3,2)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Semester III: ZOODSC303T, ZOODSC303P, DS-3 (5) - Chordates, Chordates Lab (3,2)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Semester IV: ZOODSC404T, ZOODSC404P, DS-4 (5) - Comparative Anatomy and Physiology, Comparative Anatomy and Physiology Lab (3,2)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Semester IV: ZOODSC405T, ZOODSC405P, DS-5 (5) - Ecology, Ecology Lab/Field (3,2)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Semester IV: ZOODSC406T, ZOODSC406P, DS-6 (5) - Cell Biology, Cell Biology Lab</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Semester V: ZOODSC509P, DS-9 (5) - Genetics, Genetics Lab (3,2)</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Semester V: ZOODSC510T, ZOODSC510P, DS-10 (5) - Animal Behaviour and Chronobiology, Animal Behaviour and Chronobiology Lab</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Semester VI: Developmental Biology, Developmental Biology Lab, Biodiversity and Conservation, Biodiversity and Conservation Field</td>
|
||||||
|
<td>Paper (CBCS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Minor Semester I: ZOOCOR101T, ZOOCOR101P, ZOOMIN101T, ZOOMIN101P - Animal Diversity, Animal Diversity Lab</td>
|
||||||
|
<td>Minor Paper</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Minor Semester II: ZOOCOR202T, ZOOCOR202P, ZOOMIN202T, ZOOMIN202P - Physiology and Biochemistry, Physiology and Biochemistry Lab</td>
|
||||||
|
<td>Minor Paper</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Minor Semester III: ZOOCOR303T, ZOOCOR303P, ZOOMIN303T, ZOOMIN303P - Insect Vectors and Diseases, Insect Vectors and Diseases Lab</td>
|
||||||
|
<td>Minor Paper</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Minor Semester IV: ZOOCOR404T, ZOOCOR404P</td>
|
||||||
|
<td>Minor Paper</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Minor Semester V: ZOOCOR505T, ZOOCOR505P - Aquatic Biology, Aquatic Biology Lab</td>
|
||||||
|
<td>Minor Paper</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Singing</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Wild Life Photography</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
464
faculty/dr-manas-mandal.php
Normal file
464
faculty/dr-manas-mandal.php
Normal file
@@ -0,0 +1,464 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Manas Mandal</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor of Chemistry</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, B.Ed, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:manas.chem@sreechaitanyacollege.ac.in" class="fw-bold">manas.chem@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Inorganic Materials Chemistry, Electrochemical Energy Storage</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Chemistry (Hons.)</td>
|
||||||
|
<td>The University of Burdwan/ Bankura Christian College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>IIT Kanpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Tech.</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Materials Science & Engineering</td>
|
||||||
|
<td>IIT Kharagpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Materials Chemistry</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>07.06.2017</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>NUS Research Scholarship</td>
|
||||||
|
<td>Joint UGC-CSIR</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>NET</td>
|
||||||
|
<td>National University of Singapore</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>K. Chattopadhyay, A. Basak, G.-B. Lee, M. Mandal, C. Nah, D. K. Maiti</td>
|
||||||
|
<td>Highly Efficient Aqueous Symmetric Redox Electrochemical Capacitor Based on UiO-66-NH2-Polyaniline Composite Powering Yellow LEDs</td>
|
||||||
|
<td>ACS Applied Energy Materials</td>
|
||||||
|
<td>7</td>
|
||||||
|
<td>8683-8693</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>K. Chattopadhyay, B. Dutta, S. Dutta, A. Manna, G. A. Craig, M. Mandal, M. Murrie, D. Ray</td>
|
||||||
|
<td>Chinese-Lantern Shaped [MnII2MnIII6NaI3] Cluster Assembled from Schiff Base and Azide Bridges: Synthesis, Magnetic Study and Catecholase-like Activity</td>
|
||||||
|
<td>Inorganica Chimica Acta</td>
|
||||||
|
<td>572</td>
|
||||||
|
<td>122270</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>K. Chattopadhyay, M. Mandal, D. K. Maiti</td>
|
||||||
|
<td>A Review on Zirconium-based Metal-Organic Frameworks: Synthetic Approaches and Biomedical Applications</td>
|
||||||
|
<td>Materials Advances</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>51-67</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>M. Mandal, K. Chattopadhyay, S. Paria, A. Kundu, M. Chakraborty, S. Mal, W. Shin, S. Das, C. Nah, S.K. Bhattacharya</td>
|
||||||
|
<td>Electrodeposited binder-free Mn-Co-S nanosheets toward high specific energy aqueous asymmetric supercapacitor</td>
|
||||||
|
<td>ACS Applied Electronic Materials</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>4357–4367</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>M. Mandal, K. Chattopadhyay, M. Chakraborty, W. Shin, K.K. Bera, S. Chatterjee, A. Hossain, D. Majumdar, A. Gayen, C. Nah, S.K. Bhattacharya</td>
|
||||||
|
<td>Room temperature synthesis of perovskite hydroxide, MnSn(OH)6: a negative electrode for supercapacitor</td>
|
||||||
|
<td>Electronic Materials Letters</td>
|
||||||
|
<td>18</td>
|
||||||
|
<td>559–567</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>M. Chakraborty, K.K. Bera, M. Mandal, A. Ray, S. Das, T. Bhunia, A. Gayen, A. Panda, H.-H. Park, S.K. Bhattacharya</td>
|
||||||
|
<td>Phase-dependent electrocatalytic activities of Pt-anchored rutile, anatase and mixed anatase-rutile TiO2 nano-composites for methanol oxidation in alkali</td>
|
||||||
|
<td>Solid State Sciences</td>
|
||||||
|
<td>—</td>
|
||||||
|
<td>106903</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7.</td>
|
||||||
|
<td>M. Mandal, R. Nagaraj, K. Chattopadhyay, M. Chakraborty, S. Chatterjee, D. Ghosh, S.K. Bhattacharya</td>
|
||||||
|
<td>A high-performance pseudocapacitive electrode based on CuO-MnO2 composite in redox-mediated electrolyte</td>
|
||||||
|
<td>Journal of Materials Science</td>
|
||||||
|
<td>56</td>
|
||||||
|
<td>3325-3335</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8.</td>
|
||||||
|
<td>K. Chattopadhyay, M. Mandal, D.K. Maiti</td>
|
||||||
|
<td>Smart MOFs for biotechnological applications: a mini review</td>
|
||||||
|
<td>ACS Applied Bio Materials</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>8159-8171</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9.</td>
|
||||||
|
<td>M. Chakraborty, K.K. Bera, M. Mandal, N. Sepay, K. Ghorai, M.R. Das, S. Roy Chowdhury, A. Gayen, S.K. Bhattacharya</td>
|
||||||
|
<td>Visible light assisted photo-electrocatalytic oxidation of methanol using low Pt content NiO-rutile TiO2 ternary heterojunction</td>
|
||||||
|
<td>Applied Surface Science</td>
|
||||||
|
<td>541</td>
|
||||||
|
<td>148450</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10.</td>
|
||||||
|
<td>K.K. Bera, M. Chakraborty, S.K. Bera, M. Mandal, S. Chatterjee, S.K. Bhattacharya</td>
|
||||||
|
<td>Synthesis of different Pt-ZnO composites for synergistic photo-electrocatalytic oxidation of methanol in alkali</td>
|
||||||
|
<td>ChemistrySelect</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>6586-6596</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.</td>
|
||||||
|
<td>D. Majumdar, M. Mandal, S.K. Bhattacharya</td>
|
||||||
|
<td>Journey from supercapacitors to supercapatteries: recent advancements in electrochemical energy storage systems</td>
|
||||||
|
<td>Emergent Materials</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>347-367</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12.</td>
|
||||||
|
<td>S. Chatterjee, A. Ray, M. Mandal, S. Das, S.K. Bhattacharya</td>
|
||||||
|
<td>Synthesis and characterization of CuO-NiO nanocomposites for electrochemical supercapacitors</td>
|
||||||
|
<td>Journal of Materials Engineering and Performance</td>
|
||||||
|
<td>29</td>
|
||||||
|
<td>8036-8048</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13.</td>
|
||||||
|
<td>D. Majumdar, M. Mandal, S.K. Bhattacharya</td>
|
||||||
|
<td>Review on V2O5 and its' carbon-based nanocomposites for supercapacitor applications</td>
|
||||||
|
<td>ChemElectroChem</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>1623-1648</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.</td>
|
||||||
|
<td>K.K. Bera, M. Mandal, S.K. Bhattacharya</td>
|
||||||
|
<td>Nanostructured ZnO-Pt composites for synergistic electrocatalysis of methanol oxidation in alkaline medium</td>
|
||||||
|
<td>Electrochimica Acta</td>
|
||||||
|
<td>326</td>
|
||||||
|
<td>134990</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.</td>
|
||||||
|
<td>M. Mandal, D. Majumdar, K.K. Bera, S.K. Bhattacharya</td>
|
||||||
|
<td>Recent advancements in hybrid supercapacitors: materials, mechanisms and future trends</td>
|
||||||
|
<td>Energy Storage Materials</td>
|
||||||
|
<td>19</td>
|
||||||
|
<td>234-256</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16.</td>
|
||||||
|
<td>S. Chatterjee, A. Ray, M. Mandal, S.K. Bhattacharya</td>
|
||||||
|
<td>CuO-ZnO hybrid nanocomposites as high-performance electrode materials for supercapacitors</td>
|
||||||
|
<td>Materials Today: Proceedings</td>
|
||||||
|
<td>11</td>
|
||||||
|
<td>276-284</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17.</td>
|
||||||
|
<td>D. Majumdar, M. Mandal, S.K. Bhattacharya</td>
|
||||||
|
<td>Advances in MnO2-based hybrid electrode materials for electrochemical supercapacitors</td>
|
||||||
|
<td>Chemical Engineering Journal</td>
|
||||||
|
<td>356</td>
|
||||||
|
<td>989-1015</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18.</td>
|
||||||
|
<td>K.K. Bera, M. Mandal, S.K. Bhattacharya</td>
|
||||||
|
<td>Nickel-cobalt oxide based nanostructures as efficient electrode materials for high-performance hybrid supercapacitors</td>
|
||||||
|
<td>Journal of Power Sources</td>
|
||||||
|
<td>438</td>
|
||||||
|
<td>226988</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>19.</td>
|
||||||
|
<td>M. Mandal, S. Chatterjee, D. Majumdar, S.K. Bhattacharya</td>
|
||||||
|
<td>Recent progress in transition metal sulfides and phosphides as electrode materials for electrochemical energy storage</td>
|
||||||
|
<td>ACS Sustainable Chemistry & Engineering</td>
|
||||||
|
<td>7</td>
|
||||||
|
<td>4560-4578</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Refresher Course in Chemistry</td>
|
||||||
|
<td>Sri Guru Tegh Bahadur Khalsa College, Delhi <br> SWAYAM ARPIT Online Course (UGC)</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Faculty Induction Program (/OP)</td>
|
||||||
|
<td>National Institute of Technical Teachers’ Training and Research, Bhopal <br> (Online) (UGC)</td>
|
||||||
|
<td>16.11.2020 to 11.12.2020</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>M. Mandal, K. Chattopadhyay, S.K. Bhattacharya</td>
|
||||||
|
<td>Sunlight mediated photocatalytic reduction of aqueous Cr(VI) using metal hexacyanoferrate (M = Mn, Ni, Cu and Zn)</td>
|
||||||
|
<td>3rd International Conference on Advances in Mechanical Engineering and its Interdisciplinary Areas (ICAMEI - 2021)</td>
|
||||||
|
<td>College of Engineering & Management, Kolaghat, India</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>M. Mandal, K. Chattopadhyay</td>
|
||||||
|
<td>Pseudocapacitive electrode based on Poly[Ni(salen)] prepared by electrochemical polymerization</td>
|
||||||
|
<td>National Seminar on Modern Trends in Chemistry for Sustainable Development</td>
|
||||||
|
<td>Vijaygarh Jyotish Roy College, Kolkata, India</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>M. Mandal, R. Nagaraj, K. Chattopadhyay, M. Chakraborty, S. Chatterjee, D. Ghosh, S.K. Bhattacharya</td>
|
||||||
|
<td>Investigation of the electrochemical performance of pristine CuO and MnO2@CuO nanocomposite in redox mediated electrolyte</td>
|
||||||
|
<td>Conference</td>
|
||||||
|
<td>Jadavpur University, Kolkata, India</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>M. Mandal, S.K. Bhattacharjya</td>
|
||||||
|
<td>Fabrication of an asymmetric supercapacitor based on Mn3O4-multi wall carbon nanotube composite and reduced graphene oxide</td>
|
||||||
|
<td>National Seminar on Current Development in Chemical Sciences (NSCDCS)</td>
|
||||||
|
<td>Jadavpur University, Kolkata, India</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Polymer Chemistry</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Nanomaterials</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
678
faculty/dr-partha-biswas.php
Normal file
678
faculty/dr-partha-biswas.php
Normal file
@@ -0,0 +1,678 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Partha Biswas</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT in Defence Studies</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.B.A, PG, M.A, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: National Security , International Relation</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Geo- strategy, Military Doctrine, Foreign Affairs and Multi-layer Diplomacy. </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>BA</td>
|
||||||
|
<td>2000</td>
|
||||||
|
<td>Defence, Pol Science, English</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MBA</td>
|
||||||
|
<td>2008</td>
|
||||||
|
<td>Human Resource Management</td>
|
||||||
|
<td>National Institute of Business Management, Chennai</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PG Diploma (One Year)</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Human Rights</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MA</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Defence Studies</td>
|
||||||
|
<td>CSMJ University, Kanpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PhD</td>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>International Relations</td>
|
||||||
|
<td>RIMT University, Punjab</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Post Doctorate</td>
|
||||||
|
<td>2024</td>
|
||||||
|
<td>National Security</td>
|
||||||
|
<td>Jawaharlal University, Delhi</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01.</td>
|
||||||
|
<td>Guest Faculty</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02.</td>
|
||||||
|
<td>State Aided College Teacher</td>
|
||||||
|
<td>Same as above</td>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>National Post Doctoral Fellowship</td>
|
||||||
|
<td>Indian Council of Social Science Research</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Book/Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>“Naam Namak Nishan: The Armed Force Doctrine and Human Rights”</td>
|
||||||
|
<td>Self Authored Book</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>200</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Dr. Partha Biswas (Editor)</td>
|
||||||
|
<td>G20: A way Forward</td>
|
||||||
|
<td>Edited Book</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>180</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>Dr. Partha Biswas (Editor)</td>
|
||||||
|
<td>Vasudaibha Kutumbakam: The Neighbourhood Foreign Policy of India</td>
|
||||||
|
<td>Edited Book</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>225</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>“Agniveer Narishakti: A Tour of Gender Neutral Duty”</td>
|
||||||
|
<td>SHODH PRERAK</td>
|
||||||
|
<td>12</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>“India’s Defence Modernization: Role Of Israel”</td>
|
||||||
|
<td>Interdisciplinary Journal of Contemporary Research</td>
|
||||||
|
<td>7</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>06</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>“India’s Counterterrorism Policy: Insights Of Israel’s Role”</td>
|
||||||
|
<td>Shodh Drishti</td>
|
||||||
|
<td>11</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>07</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>“Dystopian Age Of Pandemic: The Challenge Of National Security Ramification”</td>
|
||||||
|
<td>Sambodhi</td>
|
||||||
|
<td>46</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08</td>
|
||||||
|
<td>Dr. Partha Biswas, Dr. Ruchika Singla</td>
|
||||||
|
<td>“A Journey To Eternal Spirituality”</td>
|
||||||
|
<td>Valiant Indian Warriors (Book Chapter)</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>“United Monarchy Of Israel: King David”</td>
|
||||||
|
<td>International Journal of Social Science & Management Studies</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>Regional Implication Of Israel’s Emerging Defence Ties With South Asia</td>
|
||||||
|
<td>South Asia Peace and Security Challenge (Book Chapter)</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>Indo-Israel Relation: Analytical Overview Of Defence Policy Framework</td>
|
||||||
|
<td>International Journal of Research and Analytical Reviews</td>
|
||||||
|
<td>7</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>Indo-Israel Strategic Tie: Sky’s Is The Limit</td>
|
||||||
|
<td>The Online International Interdisciplinary Research Journal</td>
|
||||||
|
<td>10</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>Contemporary World and Legitimacy of Women Conscription</td>
|
||||||
|
<td>The Online International Interdisciplinary Research Journal</td>
|
||||||
|
<td>10</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>“Pedagogical Challenges in Teaching Social Science” (Faculty Development Programme)</td>
|
||||||
|
<td>Malaviya Mission Teacher Training Centre (MMTTC), TLC, Central University of Punjab</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Emerging Trend on Research Methodology (One Week International Workshop)</td>
|
||||||
|
<td>Manonmaniam Sundaranar University, Tamilnadu</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>COVID-19 GLOBALVOICES (One Day National Workshop)</td>
|
||||||
|
<td>Sharda University, Delhi</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04</td>
|
||||||
|
<td>The Relevance of Dalit Literature in Contemporary Indian Literary Scene” (One Day National Workshop)</td>
|
||||||
|
<td>S.M.A. Science and K.K.C. Commerce College, Chalisgaon</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05</td>
|
||||||
|
<td>“INDIA'S INTERNAL SECURITY CHALLENGES: COVID CRISIS AND ROLE OF EXTERNAL ACTOR”</td>
|
||||||
|
<td>Ashanagar MMT College, University of Kalyani</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>06</td>
|
||||||
|
<td>“Programme and Scheme for SC & ST”</td>
|
||||||
|
<td>Hiralal Majumder Memorial College for Women, West Bengal State University</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>07</td>
|
||||||
|
<td>“RUSSO-UKRAINE CONFLICT: CONCERNING ISSUES TO INDIA’S INTERNATIONAL RELATION”</td>
|
||||||
|
<td>Ramnagar College, Vidyasagar University</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08</td>
|
||||||
|
<td>“INDIA’S STRATEGIC PLANNING: OPPORTUNITY AND CHALLENGES”</td>
|
||||||
|
<td>Rani Dhanya Kumari College, University of Kalyani</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09</td>
|
||||||
|
<td>“Scheduled Castes in Independent India - Present and Future”</td>
|
||||||
|
<td>Social Studies Foundation and Maulana Abul Kalam Azad Institute of Asian Studies, Kolkata</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>Revolution In Transnational Civil-Military Affairs And Future Statecraft: An Integrated Strategy</td>
|
||||||
|
<td>Emerging Trends in Research and Developments</td>
|
||||||
|
<td>RIMT University, Punjab</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>Indo – Israel Burgeoning Strategic Partnership</td>
|
||||||
|
<td>Emerging Trends in Research and Developments</td>
|
||||||
|
<td>RIMT University, Punjab</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>India – Israel Partnership Rapprochement</td>
|
||||||
|
<td>Emerging Trends in Research and Developments</td>
|
||||||
|
<td>RIMT University, Punjab</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>Dystopian Diplomacy: Post-Millennial Crisis Of Jerusalem</td>
|
||||||
|
<td>Inspirare India and Osmania University</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>The Legitimacy of Ex-CJI Commission</td>
|
||||||
|
<td>Reservation and Conversion</td>
|
||||||
|
<td>Goutam Buddha University, Noida</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>06</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Indian Military Power: World View</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>07</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>INDIA'S INTERNAL SECURITY CHALLENGES: COVID CRISIS AND ROLE OF EXTERNAL ACTOR</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Ashanagar MMT College, University of Kalyani</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>RUSSO-UKRAINE CONFLICT: CONCERNING ISSUES TO INDIA’S INTERNATIONAL RELATION</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Ramnagar College, Vidyasagar University</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>INDIA’S STRATEGIC PLANNING: OPPORTUNITY AND CHALLENGES</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Rani Dhanya Kumari College, University of Kalyani</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>Scheduled Castes in Independent India - Present and Future</td>
|
||||||
|
<td>Social Studies Foundation</td>
|
||||||
|
<td>Maulana Abul Kalam Azad Institute of Asian Studies</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Dr. Partha Biswas</td>
|
||||||
|
<td>Resurgence of Democratic Populism in India: Unraveling the Global Perspectives</td>
|
||||||
|
<td>Populism, Democracy, Development: Recent Trends</td>
|
||||||
|
<td>Dept. of Political Science, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2025</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>NEP</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>DFSCOR101T</td>
|
||||||
|
<td>DFSCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>DFSGCOR202T</td>
|
||||||
|
<td>DFSGCOR202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>DFSGCOR303T</td>
|
||||||
|
<td>DFSGCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>CBCS</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>DFSGCORO1T</td>
|
||||||
|
<td>DFSGCORO1T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>DFSGCOR02T</td>
|
||||||
|
<td>DFSGCOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>DFSGCOR03T</td>
|
||||||
|
<td>DFSGCOR03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>DFSGCOR04T</td>
|
||||||
|
<td>DFSGCOR04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>DFSGDSE01T</td>
|
||||||
|
<td>DFSGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>DFSGDSE02T</td>
|
||||||
|
<td>DFSGDSE02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>DFSGDSE03T</td>
|
||||||
|
<td>DFSGDSE03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>DFSGDSE06T</td>
|
||||||
|
<td>DFSGDSE06T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>DFSGGEC01T</td>
|
||||||
|
<td>DFSGGEC01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>DFSGGEC02T</td>
|
||||||
|
<td>DFSGGEC02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>DFSGSSEC01M</td>
|
||||||
|
<td>DFSGSSEC01M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>DFSGSSEC02M</td>
|
||||||
|
<td>DFSGSSEC02M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>DFSGSSEC03M</td>
|
||||||
|
<td>DFSGSSEC03M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>DFSGSSEC04M</td>
|
||||||
|
<td>DFSGSSEC04M</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Court Member (Chancellor Nominee) Assam Central University, Silchar</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>GB Member, Babu Jagjivan Ram National Foundation, Ministry of Social Justice and Empowerment (GOI)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Chairman, Homok Prakashany</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Member, Comprehensive Studies of National Security (National Think Tank)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Editor, Institute for Security and Development Studies (ISDS)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Technical Chair, Taekwondo Jadavpur University Sports Board</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>National Member of Editorial Board, Institute for Security and Development Studies</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Editorial Member, Amarkosh Prakashany</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Black Belt 3rd Dan, International Full Contact Karate</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Black Belt 4th Dan, Taekwondo</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Taekwondo International Medalist 2014 (Team India)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Technical Official, All Indian Police</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Class 1 National Referee</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Technical Official, National Games 2014 (Kerala), Senior National 2015, CBSE National 2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Coach - Bengal Team (2015 & 2017)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Coach - Inter University National (2014 to till date)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>Founder & Technical Director - Fouji Taekwondo Academy</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
463
faculty/dr-partha-sarathi-saha.php
Normal file
463
faculty/dr-partha-sarathi-saha.php
Normal file
@@ -0,0 +1,463 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">DR. PARTHA SARATHI SAHA</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor in Botany</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:pss.bot@sreechaitanyacollege.ac.in" class="fw-bold">pss.bot@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9038604788</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Plant Genetics: Plant Cell and Tissue Culture</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Plant Molecular Systematics and Cytogenetics</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Botany (Hons.)</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Genetics</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Project Fellow, WBBB</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
<td>07.10.2009</td>
|
||||||
|
<td>11.01.2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>UGC-RFSMS Fellow</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
<td>13.01.2012</td>
|
||||||
|
<td>08.06.2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>National Post Doctoral Fellow, SERB DST (Govt. of India)</td>
|
||||||
|
<td>RKMVC College</td>
|
||||||
|
<td>01.04.2016</td>
|
||||||
|
<td>31.03.2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Research Associate (NASI SSPJ Fellowship sponsored Project)</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
<td>07.05.2018</td>
|
||||||
|
<td>31.08.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Assistant Professor in Botany</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>02.09.2019</td>
|
||||||
|
<td>Contd.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Certificate of Merit for standing 5th in M.Sc. Botany Examination</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>UGC Research Fellowships in Science for Meritorious Students</td>
|
||||||
|
<td>University Grant Commission</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>National Post-Doctoral Fellowship</td>
|
||||||
|
<td>Science and Engineering Research Board, DST, Govt. of India</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Phylogenetic inferences based on chloroplast non-coding DNA and ribosomal DNA ITS1, 5.8S and ITS2 secondary structures and sequence motifs, cytogenetic and morphological characteristics of the genus Pancratium (Amaryllidaceae: Amaryllidoideae: Pancratieae) in India: a bulbous geophyte with convoluted taxonomy (FILE NO.CRG/2022/001700)</td>
|
||||||
|
<td>Rs. 29.83 Lakh</td>
|
||||||
|
<td>09.06.2023</td>
|
||||||
|
<td>08.06.2026</td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>Science and Engineering Research Board (SERB), Department of Science and Technology (DST), Government of India</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal/Book</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Nath, Sayantani; Sarkar, Sayantika; Patil, Sayali D; Saha, Partha Sarathi; Lekhak, Manoj M; Ray, Sudipta; Rao, Satyawada Rama; Yadav, SR; Verma, RC; Dhar, Manoj K</td>
|
||||||
|
<td>Cytogenetic diversity in Scilloideae (Asparagaceae): a comprehensive recollection and exploration of karyo-evolutionary trends</td>
|
||||||
|
<td>The Botanical Review</td>
|
||||||
|
<td>89 (2)</td>
|
||||||
|
<td>158</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Jha, Timir Baran; Saha, Partha Sarathi</td>
|
||||||
|
<td>Evaluation of morphological traits, fluorescent banding and rDNA ITS sequences in cultivated and wild Indian lentils (Lens spp.)</td>
|
||||||
|
<td>Genetic Resources and Crop Evolution</td>
|
||||||
|
<td>69(1)</td>
|
||||||
|
<td>349-362</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Ghosh, Ipshita; Saha, Partha Sarathi; Bhowmick, Biplab Kumar; Jha, Sumita</td>
|
||||||
|
<td>A phylogenetic analysis of Momordica (Cucurbitaceae) in India based on karyo-morphology, nuclear DNA content and rDNA ITS1–5.8 S–ITS2 sequences</td>
|
||||||
|
<td>Protoplasma</td>
|
||||||
|
<td>258 (2)</td>
|
||||||
|
<td>347-360</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Jha, Timir Baran; Saha, Partha Sarathi; Jha, Sumita</td>
|
||||||
|
<td>A comparative karyo-morphometric analysis of Indian landraces of Sesamum indicum using EMA-giemsa and fluorochrome banding</td>
|
||||||
|
<td>Caryologia</td>
|
||||||
|
<td>73 (2)</td>
|
||||||
|
<td>81-88</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Saha, Partha Sarathi; Sarkar, Sayantika; Jeyasri, Rajendran; Muthuramalingam, Pandiyan; Ramesh, Manikandan; Jha, Sumita</td>
|
||||||
|
<td>In vitro propagation, phytochemical and neuropharmacological profiles of Bacopa monnieri (L.) Wettst.: a review</td>
|
||||||
|
<td>Plants</td>
|
||||||
|
<td>9 (4)</td>
|
||||||
|
<td>411</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Saha, Partha Sarathi; Jha, Sumita</td>
|
||||||
|
<td>A molecular phylogeny of the genus Drimia (Asparagaceae: Scilloideae: Urgineeae) in India inferred from non-coding chloroplast and nuclear ribosomal DNA sequences</td>
|
||||||
|
<td>Scientific Reports</td>
|
||||||
|
<td>9 (1)</td>
|
||||||
|
<td>7563</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Jha, Timir Baran; Saha, Partha Sarathi</td>
|
||||||
|
<td>Characterization of some Indian Himalayan Capsicums through floral morphology and EMA-based chromosome analysis</td>
|
||||||
|
<td>Protoplasma</td>
|
||||||
|
<td>254</td>
|
||||||
|
<td>921-933</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Jha, Timir Baran; Saha, Partha Sarathi; Nath, Sayantani; Das, Anusree; Jha, Sumita</td>
|
||||||
|
<td>Morphological and cytogenetical characterization of ‘Dalle Khursani’: a polyploid cultivated Capsicum of India</td>
|
||||||
|
<td>Scientia horticulturae</td>
|
||||||
|
<td>215</td>
|
||||||
|
<td>80-90</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Saha, Partha Sarathi; Sengupta, Mainak; Jha, Sumita</td>
|
||||||
|
<td>Ribosomal DNA ITS1, 5.8 S and ITS2 secondary structure, nuclear DNA content and phytochemical analyses reveal distinctive characteristics of four subclades of Protasparagus</td>
|
||||||
|
<td>Journal of Systematics and Evolution</td>
|
||||||
|
<td>55 (1)</td>
|
||||||
|
<td>54-70</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Jha, Timir Baran; Saha, Partha Sarathi; Adak, Mousumi; Jha, Sumita; Roy, Partha</td>
|
||||||
|
<td>Chromosome morphometric analysis of Indian cultivars of Lens culinaris Medik. using EMA based Giemsa staining method</td>
|
||||||
|
<td>Caryologia</td>
|
||||||
|
<td>70 (3)</td>
|
||||||
|
<td>270-283</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Saha, Partha Sarathi; Ray, Sudipta; Sengupta, Mainak; Jha, Sumita</td>
|
||||||
|
<td>Molecular phylogenetic studies based on rDNA ITS, cpDNA trn L intron sequence and cladode characteristics in nine Protasparagus taxa</td>
|
||||||
|
<td>Protoplasma</td>
|
||||||
|
<td>252</td>
|
||||||
|
<td>1121-1134</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Nath, Sayantani; Saha, Partha Sarathi; Jha, Sumita</td>
|
||||||
|
<td>Medicinal Bulbous Plants Biology, Phytochemistry and Biotechnology, Editors: K G Ramawat, Jean-Michel Merillon</td>
|
||||||
|
<td>Bulbous Plants: Biotechnology (CRC Press)</td>
|
||||||
|
<td>Chapter 16</td>
|
||||||
|
<td>338-369</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Saha, Partha Sarathi; Nandagopal, Krishnadas; Ghosh, Biswajit; Jha, Sumita</td>
|
||||||
|
<td>Molecular characterization of aromatic Oryza sativa L. cultivars from West Bengal, India</td>
|
||||||
|
<td>The Nucleus</td>
|
||||||
|
<td>55</td>
|
||||||
|
<td>83-88</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>33rd Orientation/Faculty Induction Programme (Online)</td>
|
||||||
|
<td>UGC-HRDC, Mizoram University</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refresher Course on Life Sciences (Online)</td>
|
||||||
|
<td>UGC-HRDC, University of Hyderabad</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Interdisciplinary Refresher Course in Life Sciences (Online) Theme: Recent Advances in Applied Biology</td>
|
||||||
|
<td>UGC-HRDC, Assam University, Silchar</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Partha Sarathi Saha</td>
|
||||||
|
<td>A molecular phylogeny of the genus Drimia in India based on Molecular systematic study</td>
|
||||||
|
<td>XXXIII Annual Conference of Indian Association for Angiosperm Taxonomy And International Seminar on Advances in Plant Systematics, Biogeography and Biodiversity Conservation</td>
|
||||||
|
<td>Department of Botany, University of Calcutta In collaboration with Botanical Survey of India</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Topic Taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>DSC1</td>
|
||||||
|
<td>BOTDSC101T+P</td>
|
||||||
|
<td>Microbiology and Phycology Theory and Practical</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>DSC2</td>
|
||||||
|
<td>BOTDSC202T+P</td>
|
||||||
|
<td>Mycology and Phytopathology Theory and Practical</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>DSC7</td>
|
||||||
|
<td>BOTDSC407T+P</td>
|
||||||
|
<td>Morphology & Plant Systematic Theory and Practical</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>SEC</td>
|
||||||
|
<td>BOTHSEC101M</td>
|
||||||
|
<td>Floriculture and Gardening</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>SEC</td>
|
||||||
|
<td>BOTHSEC202M</td>
|
||||||
|
<td>Tissue Culture Technique and Micropropagation</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>ACOR</td>
|
||||||
|
<td>BOTACOR14T+P</td>
|
||||||
|
<td>Plant Biotechnology</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>DSE</td>
|
||||||
|
<td>BOTADSE04T</td>
|
||||||
|
<td>Analytical Techniques in Plant Sciences</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>DSE</td>
|
||||||
|
<td>BOTGDSE04T</td>
|
||||||
|
<td>Analytical Techniques in Plant Sciences</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Miniature sculpture</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Caricature</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Aviculture</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
765
faculty/dr-priyankar-sanphui.php
Normal file
765
faculty/dr-priyankar-sanphui.php
Normal file
@@ -0,0 +1,765 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Priyankar Sanphui</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor (Stage II)</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:priyo.zoo@sreechaitanyacollege.ac.in" class="fw-bold">priyo.zoo@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9831517748</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Neurobiology & Cell Biology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Neurobiology, Cell Biology, Ethology, Biodiversity & Conservation Biology. </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Zoology Honours</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Zoology</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Biochemistry (Neurobiology)</td>
|
||||||
|
<td>CSIR-Indian Institute of Chemical Biology, Kolkata & University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>28.02.2017</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Assistant Professor (W.B.E.S)</td>
|
||||||
|
<td>Darjeeling Government College, Darjeeling</td>
|
||||||
|
<td>28.02.2015</td>
|
||||||
|
<td>27.02.2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>CSIR-Research Associate</td>
|
||||||
|
<td>Laboratory of Neuro Degenerative Diseases, CSIR-Indian Institute of Chemical Biology, Kolkata</td>
|
||||||
|
<td>01.01.2015</td>
|
||||||
|
<td>27.02.2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>CSIR-Senior Research Fellow</td>
|
||||||
|
<td>Laboratory of Neuro Degenerative Diseases, CSIR-Indian Institute of Chemical Biology, Kolkata</td>
|
||||||
|
<td>01.01.2012</td>
|
||||||
|
<td>31.12.2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>CSIR-Junior Research Fellow</td>
|
||||||
|
<td>Laboratory of Neuro Degenerative Diseases, CSIR-Indian Institute of Chemical Biology, Kolkata</td>
|
||||||
|
<td>01.01.2010</td>
|
||||||
|
<td>31.12.2011</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Best presenter award in Animal Taxonomy summit 2024</td>
|
||||||
|
<td>Zoological Survey of India, Ministry of Environment, Forest and Climate Change of the Government of India</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Best Oral presenter Award in International Conference on Emerging Trends in Biosciences and Chemical Technology-2022</td>
|
||||||
|
<td>School of Biotechnology, Shri Mata Vaishnodevi University, Katra in collaboration with IIT Jammu & CSIR-IIIM</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Best Oral presenter Award in Zoology Category in 27th West Bengal State Science Congress</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Best Oral presenter award in ZOOLOGY Category in West Bengal Regional Science Congress (Southern Region)</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Best Oral presenter award in Medical Science Category in 25th West Bengal State Science Congress</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Best Oral presenter award in Medical Science Category in West Bengal Regional Science Congress (Southern Region)</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal in collaboration with University of Kalyani, West Bengal</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Best Oral presenter award in UGC sponsored national seminar on Biodiversity: Exploration, Exploitation, Conservation and Management - Vision and Mission</td>
|
||||||
|
<td>PG Department of Zoology, Barasat Government College in collaboration with The Zoological Society, Kolkata and West Bengal Biodiversity Board</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Best Oral presenter in Neurocon 2015</td>
|
||||||
|
<td>ICAR Institute of Medical Sciences & Dr. B.C. Roy Hospital, Haldia, IPGMER, Kolkata & IICB, Kolkata</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Best Oral presentation award in Neuroupdate 2014</td>
|
||||||
|
<td>Calcutta Medical College, University of Calcutta & Indian Institute of Chemical Biology, Kolkata</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Best Presentation award in the Physiology Conference 2014, held at the University of Hong Kong from 12-14th June 2014</td>
|
||||||
|
<td>University of Hong Kong, Hong Kong</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>International travel award to attend the International Brain Research Organization (IBRO) Advanced School of Neuroscience, held at the Chinese University of Hong Kong, Hong Kong, China</td>
|
||||||
|
<td>International Brain Research Organization, Paris, France</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>International travel award to Kobe, Japan, to deliver an oral presentation in the 11th Biennial Meeting of the Asia Pacific Society for Neurochemistry in conjunction with the Annual Meeting of the Japanese Society for Neurochemistry</td>
|
||||||
|
<td>Asia Pacific Society for Neurochemistry & Japanese Society for Neurochemistry</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>CSIR- Senior Research Fellowship</td>
|
||||||
|
<td>Council of Scientific and Industrial Research, Government of India</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>CSIR- Junior Research Fellowship</td>
|
||||||
|
<td>Council of Scientific and Industrial Research, Government of India</td>
|
||||||
|
<td>2009 (June 2009 NET)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>UGC-Lecturership</td>
|
||||||
|
<td>University Grant Commission, Government of India</td>
|
||||||
|
<td>2008 (Dec 2008 NET)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>A study on Phytochemical profiling and evaluation of antibacterial activity of leaf extracts of Dichroa febrifuga from Darjeeling Himalayas</td>
|
||||||
|
<td>0.5</td>
|
||||||
|
<td>13.10.2020</td>
|
||||||
|
<td></td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>R&D cell, Sree Chaitanya College, Habra</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Priyankar Sanphui*, Altamas Kabir (*corresponding author)</td>
|
||||||
|
<td>A Study on the Current Status of Butterfly Diversity of North 24 Parganas District of West Bengal with Reference to the Nectar Plants Found in the Region</td>
|
||||||
|
<td>Records Zoological Survey of India</td>
|
||||||
|
<td>124 (iS)</td>
|
||||||
|
<td>691-714</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Deep Ghosh, Priyankar Sanphui* (*corresponding author)</td>
|
||||||
|
<td>Study of nesting behaviour and parental care of Asian paradise flycatcher Terpsiphone paradisi from North 24 Parganas, West Bengal, India</td>
|
||||||
|
<td>Journal of Biodiversity and Environmental Sciences (JBES)</td>
|
||||||
|
<td>23 (3)</td>
|
||||||
|
<td>53-59</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Rupam Mandal, Priyankar Sanphui* (*corresponding author)</td>
|
||||||
|
<td>Study of Phytochemistry, Antibacterial and Anticancer Property of Aqueous and Acetone Extracts of Bergenia ciliata (Haw.) Sternb. from Darjeeling Himalayas</td>
|
||||||
|
<td>Environment and Ecology</td>
|
||||||
|
<td>41 (1A)</td>
|
||||||
|
<td>210-216</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Priyankar Sanphui*, Altamas Kabir, Gourav Saha (*corresponding author)</td>
|
||||||
|
<td>Ophiofaunal diversity of Bongaon Subdivision of West Bengal, India, with a note of possible threats to the Snake population of the area</td>
|
||||||
|
<td>Journal of Biodiversity and Environmental Sciences (JBES)</td>
|
||||||
|
<td>19 (1)</td>
|
||||||
|
<td>62-69</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Priyankar Sanphui, Anoy Kumar Das, Subhas Chandra Biswas</td>
|
||||||
|
<td>Forkhead Box O3a requires BAF57, a subunit of chromatin remodeler SWI/SNF complex for induction of p53 up‐regulated modulator of apoptosis (Puma) in a model of Parkinson’s disease</td>
|
||||||
|
<td>Journal of Neurochemistry</td>
|
||||||
|
<td>154 (5)</td>
|
||||||
|
<td>547-561</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Subhas Chandra Biswas, Priyankar Sanphui, Nandini Chatterjee, Stav Kemeny, Lloyd A. Greene</td>
|
||||||
|
<td>Cdc25A phosphatase: a key cell cycle protein that regulates neuron death in disease and development</td>
|
||||||
|
<td>Cell Death and Disease</td>
|
||||||
|
<td>8</td>
|
||||||
|
<td>e2692</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Nandini Chatterjee*, Priyankar Sanphui*, Stav Kemeny, Lloyd A. Greene, Subhas C. Biswas (*JOINT FIRST AUTHOR)</td>
|
||||||
|
<td>Role and regulation of Cdc25A phosphatase in neuron death induced by NGF deprivation or β-amyloid</td>
|
||||||
|
<td>Cell Death Discovery</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>16083</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Rumana Akhter, Priyankar Sanphui, Hrishita Das, Pampa Saha, Subhas Chandra Biswas</td>
|
||||||
|
<td>The regulation of p53 up-regulated modulator of apoptosis by JNK/c-Jun pathway in β-amyloid induced neuron death</td>
|
||||||
|
<td>Journal of Neurochemistry</td>
|
||||||
|
<td>134</td>
|
||||||
|
<td>1091–1103</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Rumana Akhter, Priyankar Sanphui, Subhas Chandra Biswas</td>
|
||||||
|
<td>The essential role of p53 upregulated modulator of apoptosis (PUMA) and its regulation by FoxO3A transcription factor in β-amyloid</td>
|
||||||
|
<td>The Journal of Biological Chemistry</td>
|
||||||
|
<td>289</td>
|
||||||
|
<td>10812-10822</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>P. Sanphui, S.C. Biswas</td>
|
||||||
|
<td>FoxO3a is activated and executes neuron death via Bim in response to β-amyloid</td>
|
||||||
|
<td>Cell Death and Disease</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>e625</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Priyankar Sanphui, Sumit Kumar Pramanik, Nandini Chatterjee, Ponnusamy Moorthi, Biswadip Banerji, Subhas Chandra Biswas</td>
|
||||||
|
<td>Efficacy of Cyclin Dependent Kinase 4 Inhibitors as Potent Neuroprotective Agents against Insults Relevant to Alzheimer’s Disease</td>
|
||||||
|
<td>PLOS ONE</td>
|
||||||
|
<td>8 (11)</td>
|
||||||
|
<td>e78842</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Biswadip Banerji, Sumit Kumar Pramanik, Priyankar Sanphui, Sameer Nikhar, Subhas C. Biswas</td>
|
||||||
|
<td>Synthesis and Cytotoxicity Studies of Novel Triazolo-Benzoxazepine as New Anticancer Agents</td>
|
||||||
|
<td>Chemical Biology & Drug Designing</td>
|
||||||
|
<td>82</td>
|
||||||
|
<td>401-409</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Orientation Course</td>
|
||||||
|
<td>UGC-HRDC Mizoram University</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Refresher Course in Life Sciences</td>
|
||||||
|
<td>UGC-HRDC Kerala University</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Refresher Course in Environmental Sciences and Disaster Management</td>
|
||||||
|
<td>MMTTC- Ranchi University</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Priyankar Sanphui</td>
|
||||||
|
<td>A Study on the Current Status of Butterfly Diversity of North 24 Parganas District of West Bengal with Reference to the Nectar Plants Found in the Region</td>
|
||||||
|
<td>Animal Taxonomy summit 2024</td>
|
||||||
|
<td>Zoological Survey of India, MoEFCC, Govt. of India</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Priyankar Sanphui</td>
|
||||||
|
<td>Unrevealing the potential role of Artificial Intelligence in Parkinson's and Disease: from Disease Diagnosis to Treatment</td>
|
||||||
|
<td>National Seminar on contribution of Remote sensing –Geographic Information system (RS-GIS) and Artificial Intelligence (AI) on opening new research sphere in Biological Sciences</td>
|
||||||
|
<td>Asutosh College, Kolkata & Ramakrishna Mission Vidyamandira, Belur Math, Howrah.</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Priyankar Sanphui and Subhas C. Biswas</td>
|
||||||
|
<td>Activation of FoxO-miR21-Cdc25A axis in neurodegeneration relevant to Alzheimer’s Disease and neuroprotection by novel Cdc25A inhibitors</td>
|
||||||
|
<td>5th West Bengal Regional Science Congress 2023</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal</td>
|
||||||
|
<td>State level</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Priyankar Sanphui</td>
|
||||||
|
<td>Diversity and ethological study of butterfly species found in Sree Chaitanya College campus, North 24 Parganas, West Bengal</td>
|
||||||
|
<td>International seminar on Innovation, Expansion, Impact and Challenges in Chemical and Biological Sciences</td>
|
||||||
|
<td>Surendranath College</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Priyankar Sanphui & Subhas C. Biswas</td>
|
||||||
|
<td>Role and regulation of Cdc25a phosphatase in Neurodegeneration relevant to Alzheimer’s Disease</td>
|
||||||
|
<td>International Conference on Emerging Trends in Biosciences and Chemical Technology 2022</td>
|
||||||
|
<td>Shri Mata Vaishno Devi University, Katra, Jammu and Kashmir</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Priyankar Sanphui</td>
|
||||||
|
<td>Novel small molecule inhibitors of Cdc25A protect neuronal cells in neurodegenerative disease models.</td>
|
||||||
|
<td>XL annual meeting of Indian Academy of Neurosciences held in NEHU, Shillong, Meghalaya</td>
|
||||||
|
<td>Indian Academy of Neurosciences & North Eastern Hill University</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Priyankar Sanphui</td>
|
||||||
|
<td>Diversity and ethological study of butterfly in Sree Chaitanya College, Habra</td>
|
||||||
|
<td>National Seminar on Only One Earth: Our One Environment</td>
|
||||||
|
<td>Netaji Subhas Open University</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Priyankar Sanphui, Altamas Kabir, Gourav Saha</td>
|
||||||
|
<td>Snake diversity of Bongaon subdivision of North 24 Parganas, West Bengal, with a note of possible threats and our rescue operations</td>
|
||||||
|
<td>DSTBT, Govt of West Bengal Sponsored National Seminar on Biodiversity: Assessment, Issues, Ethics and Management-Global Scenario</td>
|
||||||
|
<td>East Calcutta Girls College in collaboration with West Bengal Biodiversity Board</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Priyankar Sanphui</td>
|
||||||
|
<td>Diversity, threats, and conservation initiative of snake species of Bongaon subdivision of North 24 Parganas, West Bengal</td>
|
||||||
|
<td>Biodiversity & Sustainable Development</td>
|
||||||
|
<td>R. P. Gogate College of Arts & Science and R. V. Joglekar College of Commerce, Ratnagiri, in collaboration with Ratnagiri Sub Center, University of Mumbai & Environmental Society, Ratnagiri</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Priyankar Sanphui and Subhas C. Biswas</td>
|
||||||
|
<td>Cell cycle Regulatory protein Cdc25A is activated and regulated by FoxO in experimental models of Alzheimer’s Disease</td>
|
||||||
|
<td>27th West Bengal State Science Congress 2020</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal</td>
|
||||||
|
<td>State level</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Priyankar Sanphui</td>
|
||||||
|
<td>Transcription factor FoxO3a is activated in neurodegeneration relevant to Parkinson’s Disease</td>
|
||||||
|
<td>International conference on Applied Biology & first annual convention of Society of Biologists</td>
|
||||||
|
<td>Shri Mata Vaishno Devi University, Katra, Jammu and Kashmir</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Priyankar Sanphui and Subhas C. Biswas</td>
|
||||||
|
<td>Cell cycle Regulatory protein Cdc25A is activated and regulated by FoxO in experimental models of Alzheimer’s disease</td>
|
||||||
|
<td>4th West Bengal Regional Science Congress 2019</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal</td>
|
||||||
|
<td>State level</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Priyankar Sanphui and Subhas C. Biswas</td>
|
||||||
|
<td>Role of FoxO in Alzheimer’s Disease</td>
|
||||||
|
<td>26th West Bengal Regional Science Congress</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal</td>
|
||||||
|
<td>State level</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Priyankar Sanphui and Subhas C. Biswas</td>
|
||||||
|
<td>Role of FoxO in neurodegenerative Diseases</td>
|
||||||
|
<td>25th West Bengal State Science Congress</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal</td>
|
||||||
|
<td>State level</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Priyankar Sanphui and Subhas C. Biswas</td>
|
||||||
|
<td>Role of FoxO in neurodegenerative Diseases</td>
|
||||||
|
<td>West Bengal Regional Science Congress</td>
|
||||||
|
<td>Department of Higher Education, Science and Technology and Biotechnology, Government of West Bengal</td>
|
||||||
|
<td>State level</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Priyankar Sanphui, Subhabrata Dey, Dipsmita Mukherjee and Sumana Saha</td>
|
||||||
|
<td>Affirming Length of Body or Part/s and Weight Thereof as a Determinant of Capture Area of Spider Web</td>
|
||||||
|
<td>UGC sponsored national seminar on Biodiversity: Exploration, Exploitation, Conservation and Management - Vision and Mission</td>
|
||||||
|
<td>Barasat Government College, The Zoological Society, Kolkata and West Bengal Biodiversity Board</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>Priyankar Sanphui, Pallabi Bhattacharyya & Subhas C Biswas</td>
|
||||||
|
<td>Transcription factor FoxO3a regulates Fas Ligand via microRNA 21 in a cellular model of Parkinson’s disease</td>
|
||||||
|
<td>International symposium on translational neuroscience and XXXIV annual meeting of Indian Academy of Neurosciences held in NBRC, Haryana</td>
|
||||||
|
<td>Indian Academy of Neurosciences & National Brain Research Center</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>Priyankar Sanphui, Nandini Chatterjee, Sumit K Pramanik and Subhas C. Biswas</td>
|
||||||
|
<td>Cell cycle regulatory protein Cdc25A is activated and regulated by FoxO via miR21 in experimental models of Alzheimer’s disease</td>
|
||||||
|
<td>Neurocon2015</td>
|
||||||
|
<td>ICAR Institute of Medical Sciences & Dr. B.C. Roy Hospital, Haldia, IPGMER, Kolkata & IICB, Kolkata</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>19</td>
|
||||||
|
<td>Priyankar Sanphui, Nandini Chatterjee and Subhas C. Biswas</td>
|
||||||
|
<td>Cell-cycle regulatory protein Cdc25A as a therapeutic target for Alzheimer’s Disease</td>
|
||||||
|
<td>Neuroupdate 2014</td>
|
||||||
|
<td>Calcutta Medical College, University of Calcutta & CSIR-Indian Institute of Chemical Biology</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>20</td>
|
||||||
|
<td>Priyankar Sanphui, Nandini Chatterjee, Subhas Chandra Biswas</td>
|
||||||
|
<td>Regulation of Cell Division Cycle 25A (Cdc25A) phosphatase by FoxO3a via miR21 in Alzheimer’s disease-related neurodegeneration</td>
|
||||||
|
<td>International symposium on translational Neurosciences and XXXII annual meeting of Indian Academy of Neurosciences held in NIMHNS, Bangalore</td>
|
||||||
|
<td>Indian Academy of Neurosciences & National Institute of Mental Health And Neuro Science, Bengaluru, India</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>21</td>
|
||||||
|
<td>Priyankar Sanphui, Raghavendra Singh, K. P. Mohanakumar, Subhas Chandra Biswas</td>
|
||||||
|
<td>FoxO3a is activated and induces pro-apoptotic gene, Puma in presence of chromatin remodeler BAF57 in models of Parkinson’s disease</td>
|
||||||
|
<td>Physiology Conference 2014</td>
|
||||||
|
<td>University of Hongkong, Hongkong</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>22</td>
|
||||||
|
<td>Priyankar Sanphui, Sumit Kumar Pramanik, Ponnusamy Moorthi, Biswadip Banerji, Subhas Chandra Biswas</td>
|
||||||
|
<td>Cyclin-dependent kinase 4 (Cdk4) inhibitors are neuroprotective in cellular models of Alzheimer’s disease</td>
|
||||||
|
<td>XXX annual meeting of Indian Academy of Neurosciences and International symposium on translational neuroscience: Unravelling mysteries of brain in health and disease held in GNDU, Amritsar</td>
|
||||||
|
<td>Indian Academy of Neurosciences and Guru Nanak Dev University, Amritsar</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>23</td>
|
||||||
|
<td>Priyankar Sanphui and Subhas C. Biswas</td>
|
||||||
|
<td>FoxO3a promotes Neurodegeneration via Bim in Cellular model of Alzheimer’s Disease</td>
|
||||||
|
<td>11th Biennial meeting of Asia Pacific Society for Neurochemistry & 55th Annual meeting of Japanese Society for Neurochemistry held in Kobe, Japan</td>
|
||||||
|
<td>Asia Pacific Society for Neurochemistry & Japanese Society for Neurochemistry</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>24</td>
|
||||||
|
<td>Priyankar Sanphui and Subhas C. Biswas</td>
|
||||||
|
<td>FoxO3a, a transcription factor, is activated and is required for neuron death in cellular models of Alzheimer’s disease</td>
|
||||||
|
<td>Neurosciences 2011 (SfN Annual meeting)</td>
|
||||||
|
<td>Society for Neurosciences, Washington DC, USA</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Paper Title</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Non Chordates</td>
|
||||||
|
<td>ZOODSC101, ZOODSC303</td>
|
||||||
|
<td>I & III</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Chordates</td>
|
||||||
|
<td>ZOODSC202</td>
|
||||||
|
<td>II</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Cell Biology</td>
|
||||||
|
<td>ZOODSC406</td>
|
||||||
|
<td>IV</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Biochemistry</td>
|
||||||
|
<td>ZOODSC407</td>
|
||||||
|
<td>IV</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Ecology</td>
|
||||||
|
<td>ZOODSC405</td>
|
||||||
|
<td>IV</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Genetics & Mol Bio</td>
|
||||||
|
<td>ZOODSC508, ZOODSC509</td>
|
||||||
|
<td>V</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Animal Behaviour & Chronobiology</td>
|
||||||
|
<td>ZOODSC510</td>
|
||||||
|
<td>V</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Taxonomy</td>
|
||||||
|
<td>ZOODSC612</td>
|
||||||
|
<td>VI</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Developmental Biology</td>
|
||||||
|
<td>ZOODSC613</td>
|
||||||
|
<td>VI</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Evolutionary Biology</td>
|
||||||
|
<td>ZOODSC614</td>
|
||||||
|
<td>VI</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Immunology</td>
|
||||||
|
<td>ZOODSC615</td>
|
||||||
|
<td>VI</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Biodiversity & Conservation</td>
|
||||||
|
<td>ZOODSC717</td>
|
||||||
|
<td>VII</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Research Methodology</td>
|
||||||
|
<td>ZOODSC818</td>
|
||||||
|
<td>VIII</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Cancer Biology</td>
|
||||||
|
<td>ZOODSC819</td>
|
||||||
|
<td>VIII</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Trekking & Hiking</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Painting</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
594
faculty/dr-rajkumar-jana.php
Normal file
594
faculty/dr-rajkumar-jana.php
Normal file
@@ -0,0 +1,594 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Rajkumar Jana</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:rajkumar.phys@sreechaitanyacollege.ac.in" class="fw-bold">rajkumar.phys@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Electronics </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: ynthesis and characterization of various nanocomposits, fabrication of thin film semiconductor devices and its photovoltaic application. Implementations of complex impedance spectroscopy technique to nanocomposits.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc. (H)</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
<td>Burdwan University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>CSIR-NET</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Physical Science</td>
|
||||||
|
<td>Council of Scientific & Industrial Research (CSIR)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Physics</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Techno India University (Private University), Kolkata, West Bengal</td>
|
||||||
|
<td>12.02.2020</td>
|
||||||
|
<td>03.12.2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra, West Bengal</td>
|
||||||
|
<td>22.12.2023</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Soumen Singha, Bhaskar Khanra, Somen Goswami, Rituparna Mondal, Rajkumar Jana, Arka Dey, Sanjoy Kumar Dey, Partha Pratim Ray, Corrado Rizzoli, Rajat Saha and Sanjay Kumar</td>
|
||||||
|
<td>Structural, optical, dielectric and electrical transport properties of a [Mg(H2O)6]2+-templated proton conducting, semiconducting and photoresponsive 3D hydrogen bonded supramolecular framework</td>
|
||||||
|
<td>New Journal of Chemistry</td>
|
||||||
|
<td>45</td>
|
||||||
|
<td>20596-20611</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Soumen Singha, Rajkumar Jana, Rituparna Mondal, Partha Pratim Ray, Partha Pratim Bag, Kajal Gupta, Nandan Pakhira, Corrado Rizzoli, Arabinda Mallick, Sanjay Kumar and Rajat Saha</td>
|
||||||
|
<td>Photo-responsive Schottky diode behavior of a donor–acceptor co-crystal with violet blue light emission</td>
|
||||||
|
<td>CrystEngComm</td>
|
||||||
|
<td>23</td>
|
||||||
|
<td>3510</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Tanmoy Singha, Debashis Mallick, Utsav Chakraborty, Pradip Maiti, Rajkumar Jana, Chittaranjan Sinha, Partha Pratim Ray, Pabitra Kumar Paul</td>
|
||||||
|
<td>Development of a Schottky barrier diode using molecular network of 1-alkyl-2-(arylazo) imidazole prepared by Langmuir–Blodgett technique</td>
|
||||||
|
<td>Journal of Physics and Chemistry of Solids</td>
|
||||||
|
<td>149</td>
|
||||||
|
<td>109778</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Soumen Singha, Somen Goswami, Sanjay Kumar Dey, Rajkumar Jana, Parthapratim Ray, Indrajit Saha, Corrado Rizzoli, Parthapratim Bag, Sanjay Kumar, Rajat Saha</td>
|
||||||
|
<td>Synergistic effect of various intermolecular interactions on self-assembly and optoelectronic behaviour in co-crystals/salts of tetrabromoterephthalic acid: a report on their structure, theoretical study and Hirshfeld surface analysis</td>
|
||||||
|
<td>CrystEngComm</td>
|
||||||
|
<td>22</td>
|
||||||
|
<td>8197-8207</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Rajkumar Jana, Joydeep Datta, Sayantan Sil, Arka Dey, Baishakhi Pal, Animesh Biswas and Partha Pratim Ray</td>
|
||||||
|
<td>Exploration of temperature dependent dielectric relaxation and correlated barrier hopping (CBH) conduction mechanism of hydrothermally synthesized CuO nanoflakes</td>
|
||||||
|
<td>Materials Research Express</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>105d1</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Subhendu Dhibar, Rajkumar Jana, Partha Pratim Ray, Biswajit Dey</td>
|
||||||
|
<td>Monoethanolamine and Fe(III) based metallohydrogel: An efficient Schottky barrier diode</td>
|
||||||
|
<td>Journal of Molecular Liquids</td>
|
||||||
|
<td>289</td>
|
||||||
|
<td>111126</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Basudeb Dutta, Rajkumar Jana, Anup Kumar Bhanja, Partha Pratim Ray, Chittaranjan Sinha and Mohammad Hedayetullah Mir</td>
|
||||||
|
<td>Supramolecular Aggregate of Cadmium(II)-Based One-Dimensional Coordination Polymer for Device Fabrication and Sensor Application</td>
|
||||||
|
<td>Inorganic Chemistry</td>
|
||||||
|
<td>58</td>
|
||||||
|
<td>2686-2694</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Kamalesh Pal, Arkaprava Mondal, Rajkumar Jana, Partha P. Ray, Arup Gayen</td>
|
||||||
|
<td>Domestic LED light driven methylene blue degradation by g-C3N4-CaCu3Ti4O12 composite</td>
|
||||||
|
<td>Applied Surface Science</td>
|
||||||
|
<td>467–468</td>
|
||||||
|
<td>543–553</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Subhendu Dhibar, Amiya Dey, Rajkumar Jana, Arpita Chatterjee, Gourab Kanti Das, Partha Pratim Ray, Biswajit Dey</td>
|
||||||
|
<td>A semiconducting supramolecular Co(ii)-metallohydrogel: an efficient catalyst for single-pot aryl–S bond formation at room temperature</td>
|
||||||
|
<td>Dalton Transactions</td>
|
||||||
|
<td>48</td>
|
||||||
|
<td>17388-17394</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Joydeep Datta, Mrinmay Das, Sayantan Sil, Sanjay Kumar, Arka Dey, Rajkumar Jana, Sudipta Bandyopadhyay, Partha Pratim Ray</td>
|
||||||
|
<td>Improvement of charge transport for hydrothermally synthesized Cd0.8Fe0.2S over co-precipitation method: A comparative study of structural, optical and magnetic properties</td>
|
||||||
|
<td>Materials Science in Semiconductor Processing</td>
|
||||||
|
<td>91</td>
|
||||||
|
<td>133-145</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Rajkumar Jana, Arka Dey, Mrinmay Das, Joydeep Datta, Pubali Das, Partha Pratim Ray</td>
|
||||||
|
<td>Improving performance of device made up of CuO nanoparticles synthesized by hydrothermal over the reflux method</td>
|
||||||
|
<td>Applied Surface Science</td>
|
||||||
|
<td>452</td>
|
||||||
|
<td>155-164</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Rajkumar Jana, Sayantan Sil, Arka Dey, Joydeep Datta, Partha Pratim Ray</td>
|
||||||
|
<td>Analysis of temperature dependent electrical performance of Al/CuO/ITO Schottky barrier diode and explanation of inhomogeneous barrier heights by double Gaussian distribution</td>
|
||||||
|
<td>AIP Advances</td>
|
||||||
|
<td>8</td>
|
||||||
|
<td>125104</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Kamalesh Pal, Rajkumar Jana, Arka Dey, Partha P. Ray, Md Motin Seikh, Arup Gayen</td>
|
||||||
|
<td>Application of CaCu3Ti4O12 based quadruple perovskites as a promising candidate for optoelectronic devices</td>
|
||||||
|
<td>Chemical Physics Letters</td>
|
||||||
|
<td>699</td>
|
||||||
|
<td>229–233</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Kamalesh Pal, Rajkumar Jana, Arka Dey, Partha P. Ray, Md Motin Seikh, Arup Gayen</td>
|
||||||
|
<td>Performance analysis of Fe-doped calcium copper titanate quadruple perovskite in optoelectronic device</td>
|
||||||
|
<td>Chemical Physics Letters</td>
|
||||||
|
<td>709</td>
|
||||||
|
<td>110–115</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Basudeb Dutta, Rajkumar Jana, Chittaranjan Sinha, Partha Pratim Ray, Mohammad Hedayetullah Mir</td>
|
||||||
|
<td>Synthesis of a Cd (II) based 1D coordination polymer by in situ ligand generation and fabrication of a photosensitive electronic device</td>
|
||||||
|
<td>Inorganic Chemistry Frontiers</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>1998-2005</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Arka Dey, Rajkumar Jana, Joydeep Dhar, Pubali Das, Partha Pratim Ray</td>
|
||||||
|
<td>Gaussian Distribution of Inhomogeneous Barrier Height of Al/ZnS/ITO Schottky Barrier Diodes</td>
|
||||||
|
<td>Materials Today: Proceedings</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>9958–9964</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>Arka Dey, Joydeep Dhar, Sayantan Sil, Rajkumar Jana, Partha Pratim Ray</td>
|
||||||
|
<td>Bias Voltage-Dependent Impedance Spectroscopy Analysis of Hydrothermally Synthesized ZnS Nanoparticles</td>
|
||||||
|
<td>Journal of Materials Engineering and Performance</td>
|
||||||
|
<td>27</td>
|
||||||
|
<td>2727–2733</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>Joydeep Datta, Mrinmay Das, Arka Dey, Sayantan Sil, Rajkumar Jana, Partha Pratim Ray</td>
|
||||||
|
<td>Charge transport mechanism of Al/Cd1-XZnXS/ITO Schottky diode and its photosensing behaviour</td>
|
||||||
|
<td>International Journal of Research in Engineering and Technology</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>2321-7308</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>19</td>
|
||||||
|
<td>Joydeep Datta, Animesh Layek, Mrinmay Das, Arka Dey, Somnath Middya, Rajkumar Jana, Partha Pratim Ray</td>
|
||||||
|
<td>Growth of Hierarchical Strontium Incorporated Cadmium Sulphide For Possible Application in Optical and Electronic Devices</td>
|
||||||
|
<td>Journal of Materials Science: Materials in Electronics</td>
|
||||||
|
<td>28</td>
|
||||||
|
<td>2049–2061</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>20</td>
|
||||||
|
<td>Mrinmay Das, Joydeep Datta, Rajkumar Jana, Sayantan Sil, Soumi Halder, Partha Pratim Ray</td>
|
||||||
|
<td>Synthesis of rGO–Zn0.8Cd0.2S via in situ reduction of GO for the realization of a Schottky diode with low barrier height and highly enhanced photoresponsivity</td>
|
||||||
|
<td>New Journal of Chemistry</td>
|
||||||
|
<td>41</td>
|
||||||
|
<td>5476-5486</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>21</td>
|
||||||
|
<td>Sayantan Sil, Arka Dey, Joydeep Datta, Rajkumar Jana, Partha Pratim Ray</td>
|
||||||
|
<td>Electrical and Optical Properties of Chemically Synthesized ZnS Nanoparticles</td>
|
||||||
|
<td>Materials Today: Proceedings</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>11893-11898</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>22</td>
|
||||||
|
<td>Joydeep Datta, Rajkumar Jana, Mrinmay Das, Arka Dey, Sayantan Sil, Partha Pratim Ray</td>
|
||||||
|
<td>Enhanced optical and electrical properties of hydrothermally grown CdS for optoelectronic application</td>
|
||||||
|
<td>Materials Research Express</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>015905</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>23</td>
|
||||||
|
<td>Rajkumar Jana, Joydeep Datta, Sayantan Sil, Arka Dey, Partha Pratim Ray</td>
|
||||||
|
<td>Performance improvement of hydrothermally grown CuO thin film based heterojunction diodes</td>
|
||||||
|
<td>Journal of Materials Science: Materials in Electronics</td>
|
||||||
|
<td>28</td>
|
||||||
|
<td>7250-7258</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>24</td>
|
||||||
|
<td>Arka Dey, Sayantan Sil, Rajkumar Jana, Joydeep Datta, Partha Pratim Ray</td>
|
||||||
|
<td>Study of temperature dependent conduction mechanism of Al/CdS/ITO Schottky barrier diode</td>
|
||||||
|
<td>Superlattices and Microstructures</td>
|
||||||
|
<td>100</td>
|
||||||
|
<td>803-811</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25</td>
|
||||||
|
<td>Sayantan Sil, Arka Dey, Joydeep Datta, Rajkumar Jana, Partha Pratim Ray</td>
|
||||||
|
<td>Structural, Optical and Electrical Properties of CdS Thin Film Deposited by Chemical Bath Deposition Technique</td>
|
||||||
|
<td>Materials Today: Proceedings</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>2069-2078</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>26</td>
|
||||||
|
<td>Rajkumar Jana, Arka Dey, Joydeep Datta, Sayantan Sil, Partha Pratim Ray</td>
|
||||||
|
<td>Fabrication of CuO based Schottky diodes and investigation of their electrical properties</td>
|
||||||
|
<td>Journal of Materials Science: Materials in Electronics</td>
|
||||||
|
<td>27</td>
|
||||||
|
<td>10399-10408</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27</td>
|
||||||
|
<td>Joydeep Datta, Sayantan Sil, Arka Dey, Rajkumar Jana, Partha Pratim Ray</td>
|
||||||
|
<td>Investigation of structural, optical and electrical properties of ZnS nanoparticles</td>
|
||||||
|
<td>Physica E: Low-dimensional Systems and Nanostructures</td>
|
||||||
|
<td>83</td>
|
||||||
|
<td>10-17</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>28</td>
|
||||||
|
<td>Arka Dey, Sayantan Sil, Joydeep Datta, Rajkumar Jana, Partha Pratim Ray</td>
|
||||||
|
<td>Electrical characteristics and conduction mechanism of Al/ZnS/ITO Schottky diodes</td>
|
||||||
|
<td>Semiconductor Science and Technology</td>
|
||||||
|
<td>31</td>
|
||||||
|
<td>125001</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29</td>
|
||||||
|
<td>Joydeep Datta, Rajkumar Jana, Sayantan Sil, Arka Dey, Partha Pratim Ray</td>
|
||||||
|
<td>Effect of synthesis method on structural, optical and electrical properties of ZnS nanoparticles</td>
|
||||||
|
<td>Journal of Alloys and Compounds</td>
|
||||||
|
<td>684</td>
|
||||||
|
<td>43-50</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>30</td>
|
||||||
|
<td>Sayantan Sil, Arka Dey, Joydeep Datta, Rajkumar Jana, Partha Pratim Ray</td>
|
||||||
|
<td>Study of electrical transport mechanism in CdS thin films prepared by chemical bath deposition technique</td>
|
||||||
|
<td>Physica B: Condensed Matter</td>
|
||||||
|
<td>503</td>
|
||||||
|
<td>45-52</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>31</td>
|
||||||
|
<td>Rajkumar Jana, Arka Dey, Sayantan Sil, Joydeep Datta, Partha Pratim Ray</td>
|
||||||
|
<td>Analysis of conduction mechanisms in hydrothermally grown CuO thin film based Schottky diodes</td>
|
||||||
|
<td>Materials Chemistry and Physics</td>
|
||||||
|
<td>177</td>
|
||||||
|
<td>512-519</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>PHSMIN303P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>PHSMIN101P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>PHSADSE03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>PHSDSC303P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>PHSDSC101P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>PHSACORO9T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>PHSACOR13T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>PHSADSE04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>PHSMIN202P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>PHSDSC202P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>PHSACOR13P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>PHSACOR09P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>PHSMIN202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>PHSHSE202M</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
349
faculty/dr-rajojit-chowdhury.php
Normal file
349
faculty/dr-rajojit-chowdhury.php
Normal file
@@ -0,0 +1,349 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Rajojit Chowdhury</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-I</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:rajojit.bot@scc.ac.in" class="fw-bold">rajojit.bot@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9933640444</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Advanced Plant Physiology, Biochemistry & Plant Molecular Biology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Soil nutrient dynamics, enzyme activity, stress factors, bacterial population, diversity and their plant growth promotion activity.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc. (Honours)</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Guest Teacher</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>19.09.2013</td>
|
||||||
|
<td>31.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>State Aided College Teacher (SACT) Category-I</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.01.2020</td>
|
||||||
|
<td>Present</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Mondal, S.*, Biswas, B.*, Chowdhury, R.*, Sengupta, R.*, Mandal, A., Kotal, H.N., Giri, C.K., Ghosh, A., Saha, S., Begam, M.M., Mukherjee, C., Das, I., Basak, S.K., Mitra Ghosh, M. and Ray, K.</td>
|
||||||
|
<td>Estuarine mangrove niches select cultivable heterotrophic diazotrophs with diverse metabolic potentials—a prospective cross-dialog for functional diazotrophy.</td>
|
||||||
|
<td>Frontiers in Microbiology</td>
|
||||||
|
<td>15</td>
|
||||||
|
<td>1324188</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Ray, K., Basak, S.K., Giri, C.K., Mandal, A., Kotal, H.N., Saha, S., Mondal, S., Biswas, B., Sarkar, B., Das, I., Sengupta, R., Ghosh, A., Chowdhury, R., Begam, M.M., Mukherjee, C., & Sutradhar, T.</td>
|
||||||
|
<td>Chapter: An account of coastal diverse mangroves of North Indian Ocean countries with a focus on species richness in relation to sediment biogeochemical cycling: Case study from Indian Sundarban mangrove</td>
|
||||||
|
<td>Springer Nature as part of book series Atmosphere, Earth, Ocean & Space<br><b>Book title:</b> Biogeochemistry of the coastal Indian Ocean</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Begam, M.M.*, Chowdhury, R.*, Sutradhar, T.*, Mukherjee, C., Chatterjee, K., Basak, S.K. & Ray, K.</td>
|
||||||
|
<td>Forecasting mangrove ecosystem degradation utilizing quantifiable eco-physiological resilience – A study from Indian Sundarbans.</td>
|
||||||
|
<td>Scientific Reports</td>
|
||||||
|
<td>10</td>
|
||||||
|
<td>6683</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Chowdhury, R.*, Sutradhar, T.*, Begam, M.M., Mukherjee, C., Chatterjee, K., Basak, S.K., & Ray, K.</td>
|
||||||
|
<td>Effects of nutrient limitation, salinity increase, and associated stressors on mangrove forest cover, structure, and zonation across Indian Sundarbans.</td>
|
||||||
|
<td>Hydrobiologia</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Mukherjee, C., Chowdhury, R., Begam, M.M., Ganguli, S., Basak, R., Chaudhuri, B. & Ray, K.</td>
|
||||||
|
<td>Effect of varying nitrate concentrations on denitrifying phosphorus uptake by DPAOs with a molecular insight into Pho regulon gene expression.</td>
|
||||||
|
<td>Frontiers in Microbiology</td>
|
||||||
|
<td>10</td>
|
||||||
|
<td>2586</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Begam, M.M.*, Sutradhar, T.*, Chowdhury, R.*, Mukherjee, C.*, Basak, S.K. & Ray, K.</td>
|
||||||
|
<td>Native salt-tolerant grass species for habitat restoration, their acclimation, and contribution to improving edaphic conditions: a study from a degraded mangrove in the Indian Sundarbans.</td>
|
||||||
|
<td>Hydrobiologia</td>
|
||||||
|
<td>803</td>
|
||||||
|
<td>373-387</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Mukherjee, C., Chowdhury, R., Sutradhar, T., Begam, M., Ghosh, S. M., Basak, S. K. & Ray, K.</td>
|
||||||
|
<td>Parboiled rice effluent: A wastewater niche for microalgae and cyanobacteria with growth coupled to comprehensive remediation and phosphorus biofertilization.</td>
|
||||||
|
<td>Algal Research</td>
|
||||||
|
<td>19</td>
|
||||||
|
<td>225-236</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Mukherjee, C., Chowdhury, R. & Ray, K.</td>
|
||||||
|
<td>Phosphorus Recycling from an Unexplored Source by Polyphosphate Accumulating Microalgae and cyanobacteria—A Step to Phosphorus Security in Agriculture.</td>
|
||||||
|
<td>Frontiers in Microbiology</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>1421</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Phycology, Microbiology, Mycology, Phytopathology, and Archegoniate (BOTMIN101/ BOTCOR101) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Plant Ecology and Taxonomy (BOTMIN202/ BOTCOR202) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Plant Anatomy and Embryology (BOTMIN303/ BOTCOR303) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Plant Physiology and Metabolism (BOTCOR404) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Cell and Molecular Biology (BOTCOR505) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Analytical Techniques in Plant Sciences (BOTCOR606) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
480
faculty/dr-sachindranath-paul.php
Normal file
480
faculty/dr-sachindranath-paul.php
Normal file
@@ -0,0 +1,480 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr Sachindranath Paul</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Associate Professor in Chemistry</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:paulsachin.chem@scc.ac.in" class="fw-bold">paulsachin.chem@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Inorganic Chemistry</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: <br>
|
||||||
|
<ul>
|
||||||
|
<li>Coordination complexes of transition metal ions </li>
|
||||||
|
<li>Organometallic compounds of transition metal</li>
|
||||||
|
<li>Bioinorganic Chemistry</li>
|
||||||
|
</ul>
|
||||||
|
</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>1991</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>St. Paul's Cathedral Mission College, Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>1993</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Inorganic Chemistry</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01/02/2000</td>
|
||||||
|
<td>30/01/2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Associate Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01/02/2011</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Junior Research Fellowship (JRF)</td>
|
||||||
|
<td>University Grants Commission, India</td>
|
||||||
|
<td>1998</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Senior Research Fellowship (SRF)</td>
|
||||||
|
<td>University Grants Commission, India</td>
|
||||||
|
<td>2000</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>A.K. Barik, S. Pal, S. K. Kar, R. J. Butcher and J. C. Bryan</td>
|
||||||
|
<td>Syntheses and spectroscopic characterization of nickel(II) complexes with 5-methyl-3-formylpyrazole-N(4)-methylthiosemicarbazone (HL4Me): X-ray crystallographic studies of [Ni(HL4Me)2](NO3)2·2H2O</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>18</td>
|
||||||
|
<td>571</td>
|
||||||
|
<td>1999</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>A. K. Barik, S. Pal, R.J. Butcher and S.K. Kar</td>
|
||||||
|
<td>Synthesis and characterization of two tris-chelate complexes of cobalt(III) with 3,5-dimethyl-1-N-methyl/ethylthiocarbamylpyrazole (HL1, HL2) — the biologically important bidentate ligands with one ambidentate donor site</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>19</td>
|
||||||
|
<td>2651</td>
|
||||||
|
<td>2000</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>S. Pal, A.K. Barik, R.J. Butcher and S.K. Kar</td>
|
||||||
|
<td>Synthesis and characterization of nickel(II) complexes with tripodal ligand tris[4-(3-(5-methylpyrazolyl)-3-aza-3-butenyl]amine (MPz3tren) : X-ray crystal structure of [Ni(MPz3tren)](BF4)2.0.5H2O</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>19</td>
|
||||||
|
<td>2661</td>
|
||||||
|
<td>2000</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>S. Pal, A.K. Barik, S. M. Peng and S.K. Kar</td>
|
||||||
|
<td>Novel Copper(II) induced formation of a porphyrinogen derivative: X-ray structural, spectroscopic and electrochemical studies of porphyrinogen complexes of Cu(II) and Co(III) complex of a tris pyrazolyl tripodal ligand.</td>
|
||||||
|
<td>Inorganic Chemistry</td>
|
||||||
|
<td>41</td>
|
||||||
|
<td>5803-5809</td>
|
||||||
|
<td>2002</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>S. Pal, A. K. Barik, S. Gupta, A. Hazra, S. K. Kar, S-M Peng, G-H Lee, Ray J Butcher, M. S. E. Fallah And J. Ribas</td>
|
||||||
|
<td>Copper(II) mediated Anion Dependent Formation of Schiff Base complexes.</td>
|
||||||
|
<td>Inorganic Chemistry</td>
|
||||||
|
<td>44</td>
|
||||||
|
<td>3880</td>
|
||||||
|
<td>2005</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>S. Gupta, A. K. Barik, S. Pal, A. Hazra, S. Roy, Ray J Butcher, S. K. Kar</td>
|
||||||
|
<td>Oxomolybdenum (VI) and (IV) complexes of pyrazole derived ONO donor ligands – Synthesis, crystal structure studies and spectrochemical correlation.</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>26</td>
|
||||||
|
<td>133</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>A. Hazra, A. K. Barik, S. Pal, S. Gupta, S. Roy, Ray J Butcher, S-M Peng, G-H Lee, S. K. Kar</td>
|
||||||
|
<td>Synthesis and Structural Studies on di-oxovanadium(V) complexes of N(4)-substituted pyrazole based thiosemicarbazone.</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>26</td>
|
||||||
|
<td>773</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>S. Roy, T. N. Mandal, A. K. Barik, S. Pal, S. Gupta, A. Hazra, R. J. Butcher, A. D. Hunter, M. Zeller, S. K. Kar</td>
|
||||||
|
<td>Metal complexes of pyrimidine derived ligands – Synthesis, characterization and X-ray crystal structures of Ni(II), Co(III) and Fe(III) complexes of Schiff base ligands derived from S-methyl/ S-benzyl dithiocarbazate and 2-S-methylmercapto-6-methylpyridine-4-carbaldehyde.</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>26</td>
|
||||||
|
<td>2603</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>S. Roy, T. N. Mandal, A. K. Barik, S. Pal, R. J. Butcher, M. S. El Fallah, J. Terceroe, S. K. Kar</td>
|
||||||
|
<td>An orthogonal ferromagnetically coupled tetracopper(II) 2 × 2 homoleptic grid supported by µ-O4 bridges and its DFT study.</td>
|
||||||
|
<td>Dalton Trans</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>1229</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>S. Pal, A. K. Barik, P. Aich, S-M Peng, G-H Lee, S. K. Kar</td>
|
||||||
|
<td>X-ray structures of iron(III) and cobalt(III) complexes containing 2-S-methyl-6-methyl-4-formylpyrimidine-N(4)-Ethylthiosemicarbazone.</td>
|
||||||
|
<td>Structural Science in India</td>
|
||||||
|
<td>18</td>
|
||||||
|
<td>149</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>S. Pal, W.-S. Hwang, I. J. B. Lin, C.-S. Lee</td>
|
||||||
|
<td>Benzene benzimidazole containing Pd(II) metallacycle: Synthesis, X-ray crystallographic characterization and its use as an efficient Suzuki coupling catalyst.</td>
|
||||||
|
<td>Journal of Molecular Catalysis A: Chemical</td>
|
||||||
|
<td>269</td>
|
||||||
|
<td>197</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>C.-S. Lee, S. Pal, W-S. Yang, W.-S. Hwang, I. J. B. Lin</td>
|
||||||
|
<td>Bis-chelate tetracarbene palladium(II) complex as an efficient and recyclable catalyst precursor for Heck reaction.</td>
|
||||||
|
<td>Journal of Molecular Catalysis A: Chemical</td>
|
||||||
|
<td>280</td>
|
||||||
|
<td>115</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>S. Pal, A. K. Barik, S. Gupta, S. Roy, T. N. Mandal, A. Hazra, M. S. E. Fallah, Ray J Butcher, S-M Peng, G-H Lee, S. K. Kar</td>
|
||||||
|
<td>Anion dependent formation of linear trinuclear mixed valence Co(III/II/II) complexes and mononuclear Co(III) complexes of pyrazole derived ligand - Synthesis, Characterization and X-ray Structures.</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>27</td>
|
||||||
|
<td>357</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>C.-Y. Wu, C.-S. Lee, S. Pal, W.-S. Hwang</td>
|
||||||
|
<td>Anion dependent formation of Ag(I) complexes of multidentate azine ligands: Synthesis and structural study.</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>27</td>
|
||||||
|
<td>2681</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>S. Gupta, S. Pal, A. K. Barik, A. Hazra, S. Roy, T. N. Mandal, S-M Peng, G-H Lee, M. S. El Fallah, J. Tercero, S. K. Kar</td>
|
||||||
|
<td>Synthesis, characterization and magnetostructural correlation studies on three binuclear copper complexes of pyrimidine derived Schiff base ligands.</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>27</td>
|
||||||
|
<td>2519</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>W-H. Yang, C-S. Lee, S. Pal, Y-N Chen, W-S. Hwang, I.J.B. Lin, J-C. Wang</td>
|
||||||
|
<td>Novel Ag(I), Pd(II), Ni(II) complexes of N,N'-bis-(2,2-diethoxyethyl)imidazole-2-ylidene: Synthesis, structures, and their catalytic activity towards Heck reaction.</td>
|
||||||
|
<td>Journal of Organometallic Chemistry</td>
|
||||||
|
<td>693</td>
|
||||||
|
<td>3729</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>S. Gupta, S. Pal, A. K. Barik, S. Roy, A. Hazra, T. N. Mandal, R. J. Butcher, S. K. Kar</td>
|
||||||
|
<td>Molybdenum(VI) complexes of a few pyrimidine derived ligands and the study of a metal mediated C=N bond cleavage resulting in ligand transformation during complex formation.</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>28</td>
|
||||||
|
<td>711</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Faculty Induction Programme</td>
|
||||||
|
<td>UGC-Malaviya Mission Teacher Training Centre</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Event</th>
|
||||||
|
<th>Organizer</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Paper presented</td>
|
||||||
|
<td>International Conference on Chemistry and 36th Annual Convention of Chemists 1999 (Platinum Jubilee Celebration)</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
<td>1999</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Paper presented</td>
|
||||||
|
<td>International Conference on Chemistry and 37th Annual Convention of Chemists 2000</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
<td>2000</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Paper presented</td>
|
||||||
|
<td>38th Annual Convention of Chemists</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
<td>2001</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Symposium attended</td>
|
||||||
|
<td>Modern Trends in Inorganic Chemistry (MTIC-9)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2001</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Colloquium attended</td>
|
||||||
|
<td>One Day Colloquium on Inorganic Chemistry (CIC-1)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2003</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>Seminar attended</td>
|
||||||
|
<td>Mathematics what is not (UGC Sponsored State Level Seminar)</td>
|
||||||
|
<td>Department of Mathematics, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2003</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7.</td>
|
||||||
|
<td>Seminar attended</td>
|
||||||
|
<td>Applied Ethics (UGC Sponsored National Seminar)</td>
|
||||||
|
<td>Department of Philosophy, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2003</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8.</td>
|
||||||
|
<td>Seminar attended</td>
|
||||||
|
<td>Education for a few is a menace to the whole society (UGC Sponsored State Level Seminar)</td>
|
||||||
|
<td>Department of Anthropology, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2004</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9.</td>
|
||||||
|
<td>Poster Presentation</td>
|
||||||
|
<td>1st European Chemistry Congress</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2006</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10.</td>
|
||||||
|
<td>Workshop attended</td>
|
||||||
|
<td>Semi-Micro Qualitative Inorganic Analysis (One Day Workshop and Publication of Books)</td>
|
||||||
|
<td>U.G. Board of Studies and Department of Chemistry, C.U.</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.</td>
|
||||||
|
<td>Symposium attended</td>
|
||||||
|
<td>Acharya Prafulla Chandra Ray Memorial Symposium on Chemistry Today</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
473
faculty/dr-sanchayita-debnath.php
Normal file
473
faculty/dr-sanchayita-debnath.php
Normal file
@@ -0,0 +1,473 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Sanchayita Debnath</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor of Botany</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:debnathsanchayita3@gmail.com" class="fw-bold">debnathsanchayita3@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Microbiology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Microbiology, Biotechnology, Pharmacy</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc. (Hons)</td>
|
||||||
|
<td>1994</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>1997</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>Visva-Bharati University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Microbiology</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Part-time Lecturer</td>
|
||||||
|
<td>Vidyasagar College for Women</td>
|
||||||
|
<td>13.11.1997</td>
|
||||||
|
<td>31.03.2005</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Part-time Lecturer</td>
|
||||||
|
<td>Vijaygarh Jyotish Ray College</td>
|
||||||
|
<td>20.07.2005</td>
|
||||||
|
<td>17.07.2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Contractual Lecturer</td>
|
||||||
|
<td>Sarad Maa Girls’ College</td>
|
||||||
|
<td>18.07.2007</td>
|
||||||
|
<td>30.06.2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>07.04.2010</td>
|
||||||
|
<td>Continuing</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>i)</td>
|
||||||
|
<td>Masami Kawase, Sanchayita Debnath, Sujata G Dastidar et al</td>
|
||||||
|
<td>Antimicrobial Activity of New Cumarin Derivatives</td>
|
||||||
|
<td>Arzneim-Forsch/Drug Res.</td>
|
||||||
|
<td>51(1)</td>
|
||||||
|
<td>67-71</td>
|
||||||
|
<td>2001</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ii)</td>
|
||||||
|
<td>Sujata G Dastidar, Sanchayita Debnath et al</td>
|
||||||
|
<td>Triflupromazine: a Microbicide Non-Antibiotic Compound</td>
|
||||||
|
<td>Acta Microbiologica et Immunologica Hungarica</td>
|
||||||
|
<td>51(1-2)</td>
|
||||||
|
<td>75-83</td>
|
||||||
|
<td>2004</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iii)</td>
|
||||||
|
<td>Debnath S, Dastidar S.G et al</td>
|
||||||
|
<td>Experimental Evaluation of Synergistic action between Antibiotics and the Antipsychotic Antimicrobial Triflupromazine</td>
|
||||||
|
<td>International Journal of Microbiology Research</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>430-434</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iv)</td>
|
||||||
|
<td>Sanchayita Debnath, Sujata G Dastidar et al</td>
|
||||||
|
<td>Implications of Antibiotic Resistances produced by Phenothiazines in Mycobacterium tuberculosis</td>
|
||||||
|
<td>Journal of Microbiology, Biotechnology and Food Sciences.</td>
|
||||||
|
<td>6(1)</td>
|
||||||
|
<td>665-669</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>v)</td>
|
||||||
|
<td>Palchoudhuri S, Debnath S, Dastidar SG et al</td>
|
||||||
|
<td>Potentiality of an Antidepressant compound to combat the Ever-Increasing problem of Infections by Multidrug Resistant Micro organisms</td>
|
||||||
|
<td>International Journal of Microbiology Research</td>
|
||||||
|
<td>11</td>
|
||||||
|
<td>1760-1763</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>vi)</td>
|
||||||
|
<td>Palchoudhuri S, Debnath S, Dastidar SG et al</td>
|
||||||
|
<td>Prospect of Developing a novel potent Antioxident from and Anti-depressant Agent</td>
|
||||||
|
<td>GJSST</td>
|
||||||
|
<td>1(1)</td>
|
||||||
|
<td>16-24</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>vii)</td>
|
||||||
|
<td>Dr Sanchayita Debnath, Dr. Dhrubo Jyoti Sen et al</td>
|
||||||
|
<td>Holistic Resin as Perfumery Plays with Chemistry</td>
|
||||||
|
<td>British Journal of Pharmaceutical and Medical research</td>
|
||||||
|
<td>07</td>
|
||||||
|
<td>3301-3304</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>viii)</td>
|
||||||
|
<td>Dr Sanchayita Debnath, Dr. Dhrubo Jyoti Sen et al</td>
|
||||||
|
<td>Dostarlimab: The Miraculous New Drug for Cancer</td>
|
||||||
|
<td>British Journal of Pharmaceutical and Medical research</td>
|
||||||
|
<td>07</td>
|
||||||
|
<td>3694-3701</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ix)</td>
|
||||||
|
<td>Dr Sanchayita Debnath, Dr. Dhrubo Jyoti Sen et al</td>
|
||||||
|
<td>Gabapention: Silent Killer of Different Diseases</td>
|
||||||
|
<td>International Journal of Creative Research Thoughts</td>
|
||||||
|
<td>10</td>
|
||||||
|
<td>294-298</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>x)</td>
|
||||||
|
<td>Dr Sanchayita Debnath, Dr. Dhrubo Jyoti Sen et al</td>
|
||||||
|
<td>Arthritis Shakes Hand with Chondroitin and Glucosamine to kick out Joint Pain</td>
|
||||||
|
<td>International Journal of Creative Research Thoughts</td>
|
||||||
|
<td>10</td>
|
||||||
|
<td>873-880</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xi)</td>
|
||||||
|
<td>Dr Sanchayita Debnath, Dr. Dhrubo Jyoti Sen et al</td>
|
||||||
|
<td>Biodiesel as Biofuel</td>
|
||||||
|
<td>International Journal of Creative Research Thoughts</td>
|
||||||
|
<td>11</td>
|
||||||
|
<td>59-64</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>i)</td>
|
||||||
|
<td>UGC Sponsored Orientation Programme</td>
|
||||||
|
<td>UGC Academic Staff College, Jadavpur University</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ii)</td>
|
||||||
|
<td>UGC Sponsored Refresher Course in Life Sciences</td>
|
||||||
|
<td>UGC Academic Staff College, University of Calcutta</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iii)</td>
|
||||||
|
<td>UGC Sponsored Refresher Course in Life Sciences</td>
|
||||||
|
<td>UGC-HRDC, University of Calcutta</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iv)</td>
|
||||||
|
<td>UGC Sponsored Refresher Course in Life Sciences</td>
|
||||||
|
<td>UGC-HRDC, Pondicherry University</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>i)</td>
|
||||||
|
<td>Sanchayita Debnath et al</td>
|
||||||
|
<td>Antimicrobial Activity of the Antipsychotic Drug Triflupromazine</td>
|
||||||
|
<td>3rd State Conference</td>
|
||||||
|
<td>IAMM</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>1999</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ii)</td>
|
||||||
|
<td>Sanchayita Debnath et al</td>
|
||||||
|
<td>Determination of powerful Antimicrobial Activity in the Neuroleptic Drug Triflupromazine</td>
|
||||||
|
<td>XXIII National Congress</td>
|
||||||
|
<td>IAMM</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>1999</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iii)</td>
|
||||||
|
<td>Sanchayita Debnath et al</td>
|
||||||
|
<td>A new Antibacterial Agent: The Non-Antibiotic Triflupromazine</td>
|
||||||
|
<td>3RD European Congress of Chemotherapy</td>
|
||||||
|
<td>Spanish Society of Chemotherapy</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2000</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iv)</td>
|
||||||
|
<td>Sanchayita Debnath et al</td>
|
||||||
|
<td>Antimicrobial Activity of the Antipsychotic Phenothiazine Compound Triflupromazine</td>
|
||||||
|
<td>10th International Congress on Infectious Diseases at Singapore</td>
|
||||||
|
<td>International Society for Infectious Diseases</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2002</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>v)</td>
|
||||||
|
<td>Sanchayita Debnath</td>
|
||||||
|
<td>Antimicrobial Activity of Antipsychotic Drug Triflupromazine</td>
|
||||||
|
<td>Inter Departmental Seminar</td>
|
||||||
|
<td>Dept of Botany & Geography, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>College Level</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>vi)</td>
|
||||||
|
<td>Sanchayita Debnath</td>
|
||||||
|
<td>Antimicrobial Activity of Antipsychotic Drug Triflupromazine</td>
|
||||||
|
<td>One-day International Seminar on Recent Advances in Life Sciences</td>
|
||||||
|
<td>Dept. of Zoology, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Reproductive Biology of Angiosperms (BOTACOR11T, BOTACOR11P)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Industrial and Environmental Microbiology (BOTADSE03T, BOTADSE03P)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Plant Biotechnology (BOTACOR14T, BOTACOR14P)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Analytical Techniques in Plant Sciences (BOTADSE04T)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Biodiversity (Minor(MA1) Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Plant Ecology and Taxonomy (Minor(MA2) Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Archegoniatae (Bryophytes and Pteridophytes) (Major(DSC3) BOTDSC303T, BOTDSC303P)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Plant Anatomy and Embryology (Minor(MA3) Practical, BOTCOR303P)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Skill Enhancement Course (SEC3)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Singing</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Dancing</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Swimming</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Recitation</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
308
faculty/dr-sanchita-mistry.php
Normal file
308
faculty/dr-sanchita-mistry.php
Normal file
@@ -0,0 +1,308 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr Sanchita Mistry</h3>
|
||||||
|
<p class="" style="font-weight: 500;"></p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:sanchitaanthro@scc.ac.in" class="fw-bold">sanchitaanthro@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Biological Anthropology and Human Genetics</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Human Genetics and Public Health</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>PhD</td>
|
||||||
|
<td>2024</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>West Bengal State University, Barasat</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M. Sc.</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B. Sc.</td>
|
||||||
|
<td>2003</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>07.04.2010</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Research Assistant</td>
|
||||||
|
<td>National Institute of Nutrition, ICMR</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>2006</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>NET JRF</td>
|
||||||
|
<td>University Grants Commission</td>
|
||||||
|
<td>2008-2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Mistry, S., & Das, M.</td>
|
||||||
|
<td>Association of premature hair greying with family history of premature greying of hair among the Bengalee Hindu young adults of Kolkata, India: A brief report.</td>
|
||||||
|
<td>Frontier Anthropology</td>
|
||||||
|
<td>11</td>
|
||||||
|
<td>45–49</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Mistry, S., & Das, M.</td>
|
||||||
|
<td>Association between premature scalp hair graying and substance abuse among the Bengalee Hindu young adults of Kolkata, India: A brief report.</td>
|
||||||
|
<td>Genus Homo</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>13-22</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Mistry, S., Chatterjee, M., Ghosh, J. R., Chakrabarti, N. K., & Bandyopadhyay, A. R.</td>
|
||||||
|
<td>Variations of scalp, pubic and axillary hair</td>
|
||||||
|
<td>Anthropologischer Anzeiger</td>
|
||||||
|
<td>69(1)</td>
|
||||||
|
<td>117–125</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Mistry, S., Ghosh, J., & Bandyopadhyay, A. R.</td>
|
||||||
|
<td>Histomorphological and quantitative characteristics of black and gray human scalp hair</td>
|
||||||
|
<td>Journal of Life Sciences</td>
|
||||||
|
<td>2(1)</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>91st Orientation Programme</td>
|
||||||
|
<td>UGC Academic Staff College, University of Burdwan</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Understanding ICT for Professional Development in Education</td>
|
||||||
|
<td>UGC- HRDC, Jadavpur University and Department of Information Technology, Jadavpur University</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Refreshers’ Course –‘Recent Advances in Anthropology’</td>
|
||||||
|
<td>UGC- HRDC, Manipur University</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>UG:</strong> ANTACOR01T/P, ANTACOR04T/P, ANTACOR07T/P, ANTSSEC01M, ANTACOR09T/P, ANTACOR11T/P, ANTADSE02T/P, ANTACOR13T/P, ANTADSE04T/P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>PG:</strong> ANTPCOR01T, ANTPCOR04P, ANTPCOR06T, ANTPCOR09P, ANTPCOR12T, ANTPCOR13T, ANTPDSE01T, ANTPDSE02P, ANTPCOR14T, ANTPDSE03T, ANTPDSE04T, ANTPDSE05P, ANTPCOR15P</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
565
faculty/dr-sanchita-mondal.php
Normal file
565
faculty/dr-sanchita-mondal.php
Normal file
@@ -0,0 +1,565 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Sanchita Mondal</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor of Chemistry</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:sanchita.chem@sreechaitanyacollege.ac.in" class="fw-bold">sanchita.chem@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Organic Chemistry </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Design and synthesis of different chemical sensors to detect various toxic ions and molecules from aqueous solution and their biological applications. Over six years of research experience in synthesis, characterization and spectrophotometric study of various chemosensors/chemodosimeters for detection of environmentally hazardous ions.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Chemistry (Honours)</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>Chemistry (Organic Specialization)</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>Indian Institute of Engineering Science and Technology, Shibpur</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>05.03.2021</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Qualified National Eligibility Test for Junior Research Fellow and Lecturer-ship (CSIR-UGC-NET) in the subject Chemical Sciences.</td>
|
||||||
|
<td>CSIR-UGC, New Delhi</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Selected for CSIR-RA fellowship</td>
|
||||||
|
<td>CSIR-UGC, New Delhi</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Awarded Dr. D. S. Kothari Post-Doctoral Fellowship</td>
|
||||||
|
<td>UGC, New Delhi</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>A. Rout, S. K. Manna*, D. Mandal, S. Mondal*, and S. Mukhopadhyay</td>
|
||||||
|
<td>A simple and efficient chemodosimeter for colorimetric and "turn-on" fluorescent detection of sulphite in aqueous solution</td>
|
||||||
|
<td>J. Photochem. Photobiol., A</td>
|
||||||
|
<td>458</td>
|
||||||
|
<td>115991</td>
|
||||||
|
<td>2025</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>S. K. Manna*, D. Kuilya, M. Mondal, D. Mandal, A. Rout, S. Pramanik, S. Mondal* and S. Mukhopadhyay</td>
|
||||||
|
<td>Colorimetric and ratiometric fluorescent chemodosimeter for the detection of hydrazine via the Ing-Manske reaction in solution as well as in the gaseous state: an experimental and computational investigation</td>
|
||||||
|
<td>J. Mol. Struct.</td>
|
||||||
|
<td>1302</td>
|
||||||
|
<td>137476</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>S. K. Manna*, D. Kuilya, A. Adhikary, A. Maiti and S. Mondal*</td>
|
||||||
|
<td>A minireview of recent developments in ozone detection using optical chemodosimeters</td>
|
||||||
|
<td>Analyst</td>
|
||||||
|
<td>148</td>
|
||||||
|
<td>954-965</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>S. K. Manna*, S. Mondal*, B. Jana and K. Samanta</td>
|
||||||
|
<td>Recent advances in tin ion detection using fluorometric and colorimetric chemosensors</td>
|
||||||
|
<td>New J. Chem.</td>
|
||||||
|
<td>46</td>
|
||||||
|
<td>7309</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>S. K. Manna*, T. K. Achar and S. Mondal</td>
|
||||||
|
<td>Recent advances in selective formaldehyde detection in biological and environmental samples by fluorometric and colorimetric chemodosimeters</td>
|
||||||
|
<td>Anal. Methods</td>
|
||||||
|
<td>13</td>
|
||||||
|
<td>1084-1105</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Paper Title 6</td>
|
||||||
|
<td>Author Name 6</td>
|
||||||
|
<td>Department 6</td>
|
||||||
|
<td>Journal Name 6</td>
|
||||||
|
<td>Year 6</td>
|
||||||
|
<td>ISSN 6</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Paper Title 7</td>
|
||||||
|
<td>Author Name 7</td>
|
||||||
|
<td>Department 7</td>
|
||||||
|
<td>Journal Name 7</td>
|
||||||
|
<td>Year 7</td>
|
||||||
|
<td>ISSN 7</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Paper Title 8</td>
|
||||||
|
<td>Author Name 8</td>
|
||||||
|
<td>Department 8</td>
|
||||||
|
<td>Journal Name 8</td>
|
||||||
|
<td>Year 8</td>
|
||||||
|
<td>ISSN 8</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Paper Title 9</td>
|
||||||
|
<td>Author Name 9</td>
|
||||||
|
<td>Department 9</td>
|
||||||
|
<td>Journal Name 9</td>
|
||||||
|
<td>Year 9</td>
|
||||||
|
<td>ISSN 9</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Paper Title 10</td>
|
||||||
|
<td>Author Name 10</td>
|
||||||
|
<td>Department 10</td>
|
||||||
|
<td>Journal Name 10</td>
|
||||||
|
<td>Year 10</td>
|
||||||
|
<td>ISSN 10</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Paper Title 11</td>
|
||||||
|
<td>Author Name 11</td>
|
||||||
|
<td>Department 11</td>
|
||||||
|
<td>Journal Name 11</td>
|
||||||
|
<td>Year 11</td>
|
||||||
|
<td>ISSN 11</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Paper Title 12</td>
|
||||||
|
<td>Author Name 12</td>
|
||||||
|
<td>Department 12</td>
|
||||||
|
<td>Journal Name 12</td>
|
||||||
|
<td>Year 12</td>
|
||||||
|
<td>ISSN 12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Paper Title 13</td>
|
||||||
|
<td>Author Name 13</td>
|
||||||
|
<td>Department 13</td>
|
||||||
|
<td>Journal Name 13</td>
|
||||||
|
<td>Year 13</td>
|
||||||
|
<td>ISSN 13</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Paper Title 14</td>
|
||||||
|
<td>Author Name 14</td>
|
||||||
|
<td>Department 14</td>
|
||||||
|
<td>Journal Name 14</td>
|
||||||
|
<td>Year 14</td>
|
||||||
|
<td>ISSN 14</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Paper Title 15</td>
|
||||||
|
<td>Author Name 15</td>
|
||||||
|
<td>Department 15</td>
|
||||||
|
<td>Journal Name 15</td>
|
||||||
|
<td>Year 15</td>
|
||||||
|
<td>ISSN 15</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Paper Title 16</td>
|
||||||
|
<td>Author Name 16</td>
|
||||||
|
<td>Department 16</td>
|
||||||
|
<td>Journal Name 16</td>
|
||||||
|
<td>Year 16</td>
|
||||||
|
<td>ISSN 16</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>Paper Title 17</td>
|
||||||
|
<td>Author Name 17</td>
|
||||||
|
<td>Department 17</td>
|
||||||
|
<td>Journal Name 17</td>
|
||||||
|
<td>Year 17</td>
|
||||||
|
<td>ISSN 17</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>Paper Title 18</td>
|
||||||
|
<td>Author Name 18</td>
|
||||||
|
<td>Department 18</td>
|
||||||
|
<td>Journal Name 18</td>
|
||||||
|
<td>Year 18</td>
|
||||||
|
<td>ISSN 18</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>19</td>
|
||||||
|
<td>Paper Title 19</td>
|
||||||
|
<td>Author Name 19</td>
|
||||||
|
<td>Department 19</td>
|
||||||
|
<td>Journal Name 19</td>
|
||||||
|
<td>Year 19</td>
|
||||||
|
<td>ISSN 19</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>20</td>
|
||||||
|
<td>Paper Title 20</td>
|
||||||
|
<td>Author Name 20</td>
|
||||||
|
<td>Department 20</td>
|
||||||
|
<td>Journal Name 20</td>
|
||||||
|
<td>Year 20</td>
|
||||||
|
<td>ISSN 20</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>21</td>
|
||||||
|
<td>Paper Title 21</td>
|
||||||
|
<td>Author Name 21</td>
|
||||||
|
<td>Department 21</td>
|
||||||
|
<td>Journal Name 21</td>
|
||||||
|
<td>Year 21</td>
|
||||||
|
<td>ISSN 21</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>22</td>
|
||||||
|
<td>Paper Title 22</td>
|
||||||
|
<td>Author Name 22</td>
|
||||||
|
<td>Department 22</td>
|
||||||
|
<td>Journal Name 22</td>
|
||||||
|
<td>Year 22</td>
|
||||||
|
<td>ISSN 22</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>23</td>
|
||||||
|
<td>Paper Title 23</td>
|
||||||
|
<td>Author Name 23</td>
|
||||||
|
<td>Department 23</td>
|
||||||
|
<td>Journal Name 23</td>
|
||||||
|
<td>Year 23</td>
|
||||||
|
<td>ISSN 23</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>24</td>
|
||||||
|
<td>Paper Title 24</td>
|
||||||
|
<td>Author Name 24</td>
|
||||||
|
<td>Department 24</td>
|
||||||
|
<td>Journal Name 24</td>
|
||||||
|
<td>Year 24</td>
|
||||||
|
<td>ISSN 24</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25</td>
|
||||||
|
<td>Paper Title 25</td>
|
||||||
|
<td>Author Name 25</td>
|
||||||
|
<td>Department 25</td>
|
||||||
|
<td>Journal Name 25</td>
|
||||||
|
<td>Year 25</td>
|
||||||
|
<td>ISSN 25</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>26</td>
|
||||||
|
<td>Paper Title 26</td>
|
||||||
|
<td>Author Name 26</td>
|
||||||
|
<td>Department 26</td>
|
||||||
|
<td>Journal Name 26</td>
|
||||||
|
<td>Year 26</td>
|
||||||
|
<td>ISSN 26</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27</td>
|
||||||
|
<td>Paper Title 27</td>
|
||||||
|
<td>Author Name 27</td>
|
||||||
|
<td>Department 27</td>
|
||||||
|
<td>Journal Name 27</td>
|
||||||
|
<td>Year 27</td>
|
||||||
|
<td>ISSN 27</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>13th Faculty Induction Programme</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refresher Course in Environmental Studies and Sustainability</td>
|
||||||
|
<td>University of Burdwan</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Level</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>National Seminar on “Research Methodology in Nanotechnology and Spectroscopy”</td>
|
||||||
|
<td>S. Mondal</td>
|
||||||
|
<td>Department of Chemistry, Haldia Government College, Haldia</td>
|
||||||
|
<td>21st June, 2023</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>International Seminar on “Recent Trends in Inorganic Chemistry-2020”</td>
|
||||||
|
<td>S. Mondal</td>
|
||||||
|
<td>Department of Chemistry, Jadavpur University, Kolkata</td>
|
||||||
|
<td>06th March, 2020</td>
|
||||||
|
<td>International</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>National Seminar on “Chemical Science: Today and Tomorrow (CSTT-2019)”</td>
|
||||||
|
<td>S. Mondal</td>
|
||||||
|
<td>Department of Chemistry, Jadavpur University, Kolkata</td>
|
||||||
|
<td>14th March, 2019</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>New Ratiometric Fluorescent Probes for Sensing of Perborate Anion Based on ESIPT-Mechanism</td>
|
||||||
|
<td>S. Mondal, U. N. Guria, A. K. Mahapatra</td>
|
||||||
|
<td>1st Regional Science & Technology Congress-2016, Presidency Division, West Bengal</td>
|
||||||
|
<td>13th-14th November, 2016</td>
|
||||||
|
<td>Regional</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>‘‘Turn-on’’ Fluorescent Sensing of Cation and Anion: From Supramolecular Chemistry to Reaction-Based Mechanism</td>
|
||||||
|
<td>S. Mondal, U. N. Guria, A. K. Mahapatra</td>
|
||||||
|
<td>UGC-Sponsored National Seminar on Recent Development in Bio-Active Molecules (RDBAM-2016), Department of Chemistry, Haldia Government College, Haldia</td>
|
||||||
|
<td>4th-5th August, 2016</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>New Chromogenic and Ratiometric Fluorescent Probes for Biologically Important Fluoride and Perborate Anion Sensing in Aqueous Media (Poster Presentation)</td>
|
||||||
|
<td>S. Mondal, A. K. Mahapatra</td>
|
||||||
|
<td>23rd West Bengal State Science & Technology Congress-2016, Presidency University and West Bengal Science & Technology Council and Department, Government of West Bengal</td>
|
||||||
|
<td>28th-29th February, 2016</td>
|
||||||
|
<td>State</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7.</td>
|
||||||
|
<td>Benzothiazole-Based New Chromogenic and Ratiometric Fluorescent Probes for Fluoride and Perborate Anion Sensing in Aqueous Media and Living Cells</td>
|
||||||
|
<td>S. Mondal, A. K. Mahapatra</td>
|
||||||
|
<td>Research Scholars Colloquium 2016, Indian Institute of Engineering and Science University, Shibpur, India</td>
|
||||||
|
<td>23rd-24th August, 2016</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8.</td>
|
||||||
|
<td>Turn-ON Fluorogenic Cu²⁺ and Sn⁴⁺ Complex of a Coumarin/Pyrene-Based Thioimidazole Conjugate as a Selective Fluorescent Chemosensor for Sulphide</td>
|
||||||
|
<td>S. Mondal, A. K. Mahapatra</td>
|
||||||
|
<td>Indian Chemical Society in the auditorium of Meghnad Saha</td>
|
||||||
|
<td>1st August, 2014</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9.</td>
|
||||||
|
<td>Research Scholars Day-2014</td>
|
||||||
|
<td>Sanchita Mondal</td>
|
||||||
|
<td>Bengal Engineering and Science University, Shibpur</td>
|
||||||
|
<td>29th-30th January, 2014</td>
|
||||||
|
<td>University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
387
faculty/dr-sharmili-mukherjee.php
Normal file
387
faculty/dr-sharmili-mukherjee.php
Normal file
@@ -0,0 +1,387 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Sharmili Mukherjee</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professorsor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:Sharmili.mukherjee8@gmail.com" class="fw-bold">Sharmili.mukherjee8@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9231998167</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Buddhist Philosophy (Buddhism) </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Buddhist Philosophy (Buddhism)</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.A.</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Philosophy</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A.</td>
|
||||||
|
<td>2008</td>
|
||||||
|
<td>Philosophy</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MPhil</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Philosophy</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PhD</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Philosophy</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>21.11.2016</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal / Book</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Gyaner Siddhi and Nagarjuna</td>
|
||||||
|
<td>Darshanbikkha</td>
|
||||||
|
<td>II</td>
|
||||||
|
<td>142-151</td>
|
||||||
|
<td>2016-2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Gandhi’s Views on Non-violence and Buddha’s Influence</td>
|
||||||
|
<td>Shodh Sanchar Bulletin</td>
|
||||||
|
<td>10</td>
|
||||||
|
<td>155-158</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Dinnagaer Dristivangite Svasamvedana</td>
|
||||||
|
<td>Book (Nectar)</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Bharatia Yog Banam Pashchatya Sarir Charcahr Tulanamulak Alochona</td>
|
||||||
|
<td>Book Chapter (Darshanik Vabona)</td>
|
||||||
|
<td>II</td>
|
||||||
|
<td>49-58</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Ethics: Indian and Western</td>
|
||||||
|
<td>Book (Global Net Publication)</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Buddha Darshane Narir Sthan</td>
|
||||||
|
<td>Book Chapter (Prasango Naribad: Samay, Samaj O Sahitya)</td>
|
||||||
|
<td></td>
|
||||||
|
<td>164-172</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Degree Logic</td>
|
||||||
|
<td>Book (Global Net Publication)</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>UGC Sponsored Orientation Programme</td>
|
||||||
|
<td>Human Resource Development Centre (HRDC)-University of Calcutta</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>UGC Sponsored Online Refresher Course in Information Technology, Awareness & Applications (ID)</td>
|
||||||
|
<td>Human Resource Development Centre (HRDC)-Guru Nanak Dev University, Amritsar</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Faculty Development Programme on Advanced Concepts for Developing MOOCs</td>
|
||||||
|
<td>Teaching Learning Centre, Ramanujan College, University of Delhi</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>UGC Sponsored Refresher Course in Indian Philosophy: Samskara, Culture and Global Recognition (IDC)</td>
|
||||||
|
<td>Human Resource Development Centre (HRDC)-University of Delhi, Delhi</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Comparative discussion between Indian Yoga and Western Gym</td>
|
||||||
|
<td>Utility of Yoga in Theory and Practice: Present Scenario</td>
|
||||||
|
<td>Indian Council of Philosophical Research, Ministry of Education</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Cyber Crime and Women Safety</td>
|
||||||
|
<td>Contemporary Gender Issues: Some Philosophical Reflections</td>
|
||||||
|
<td>Department of Philosophy, West Bengal State University</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Dr. Sharmili Mukherjee</td>
|
||||||
|
<td>Gandhi’s Opinion on Nonviolence and Buddha’s Influence</td>
|
||||||
|
<td>Exploring Contemporary Trends in Philosophy: Indian and Western</td>
|
||||||
|
<td>Department of Philosophy, Ramkrishna Mission Vidyamandir</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>PHIGCOR04T - Ethics: Indian and Western</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>PHIADSE03T - Philosophy of Religion</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>PHIACOR12T - Ethical and Social Philosophy of India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>PHIACOR05T - History of Western Philosophy</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>PHIACOR04T - Western Logic</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>PHIHGEC02T - Western Epistemology and Metaphysics</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>PHIADS01T - History of Western Philosophy (NEP)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>PHIHMD01T - Ethics: Indian and Western (NEP)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>PHIADS03T - Western Logic (NEP)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Writing and Photography</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
585
faculty/dr-sikha-mandal.php
Normal file
585
faculty/dr-sikha-mandal.php
Normal file
@@ -0,0 +1,585 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Sikha Mandal</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor, Department of Botany</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D, M. Phil</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:sikha.bot@scc.ac.in" class="fw-bold">sikha.bot@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Applied Phycology, Plant physiology and biochemistry </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Stress physiology, metabolomics</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B. Sc.</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>The University of Burdwan</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M. Sc.</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>Visva-Bharati</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M. Phil.</td>
|
||||||
|
<td>2008</td>
|
||||||
|
<td>Environmental Science</td>
|
||||||
|
<td>University of Kalyani</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>Visva-Bharati</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Post. Doc.</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Medicinal Chemistry</td>
|
||||||
|
<td>University of Mississippi, Oxford, MS, USA</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Junior Research Fellow (JRF)</td>
|
||||||
|
<td>Visva-Bharati</td>
|
||||||
|
<td>14-06-2009</td>
|
||||||
|
<td>19-09-2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Senior Research Fellow (SRF)</td>
|
||||||
|
<td>Visva-Bharati</td>
|
||||||
|
<td>19-09-2010</td>
|
||||||
|
<td>31-01-2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Research Associate (RA)</td>
|
||||||
|
<td>Visva-Bharati</td>
|
||||||
|
<td>31-01-2013</td>
|
||||||
|
<td>30-09-2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>04-12-2014</td>
|
||||||
|
<td>Continuing</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>FEMS Young Scientist Award</td>
|
||||||
|
<td>Federation of European Microbiological Societies</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SWS Women Scientist Award</td>
|
||||||
|
<td>Society of Wetland Scientist, USA</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Design and development of glycan-based anti-infective agents from extremophilic cyanobacteria.</td>
|
||||||
|
<td>Rs. 35,91,086</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>SERB, DST, Govt. of India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Bioactive secondary metabolites of cyanobacteria from extreme habitats of West Bengal in search of novel anti-microbial agents.</td>
|
||||||
|
<td>Rs. 11,74,000</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>WBDST, Govt. of West Bengal</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Development of seaweed liquid fertilizer formulation for vegetable crops….in rural areas of 24 Parganas (N)</td>
|
||||||
|
<td>Rs. 65,000/-</td>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal / Book</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<!-- Research Papers Published in Journals -->
|
||||||
|
<tr>
|
||||||
|
<td colspan="7"><strong>Research papers published in Journals</strong></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Kumar, A., Manasa, L. S., Kashyap, J., Mishra, G., Mandal, S., Rath, J., & Panigrahy, M.</td>
|
||||||
|
<td>Carbon nanoparticle exposure strengthens water-relation parameters by stimulating abscisic acid pathway and aquaporins genes in rice.</td>
|
||||||
|
<td>Plant Stress (IF: 6.8)</td>
|
||||||
|
<td>13</td>
|
||||||
|
<td>100540</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Bhakat, S., Mondal, A., Mandal, S., & Rath, J.</td>
|
||||||
|
<td>Role of exopolysaccharides of Anabaena sp. in desiccation tolerance and biodeterioration of ancient terracotta monuments of Bishnupur.</td>
|
||||||
|
<td>Archives of Microbiology (IF: 2.3)</td>
|
||||||
|
<td>206</td>
|
||||||
|
<td>105</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Parvin, N., Mandal, S., & Rath, J.</td>
|
||||||
|
<td>Microbiome of seventh-century old Parsurameswara stone monument of India and role of desiccation-tolerant cyanobacterium Lyngbya corticicola on its biodeterioration.</td>
|
||||||
|
<td>Biofouling (IF: 2.6)</td>
|
||||||
|
<td>40</td>
|
||||||
|
<td>40-53</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Mondal, A., Mandal, S., & Rath, J.</td>
|
||||||
|
<td>Seasonal diversity of cyanobacteria and new report of Brasilonema sp. colonizing the monuments of Santiniketan and Bishnupur (India).</td>
|
||||||
|
<td>International Biodeterioration & Biodegradation (IF: 4.1)</td>
|
||||||
|
<td>167</td>
|
||||||
|
<td>105350</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Saha, S., Sen, A., Mandal, S., Adhikary, S. P., & Rath, J.</td>
|
||||||
|
<td>Mycosporine-alanine, an oxo-mycosporine, protect Hassallia byssoidea from high UV and solar irradiation on the stone monument of Konark.</td>
|
||||||
|
<td>Journal of Photochemistry and Photobiology B: Biology (IF: 3.9)</td>
|
||||||
|
<td>224</td>
|
||||||
|
<td>112302</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Bhakat, S., Saha, S., Mandal, S., and Rath, J.</td>
|
||||||
|
<td>Antibacterial activity of desiccated cyanobacterium Anabaena sp. isolated from terracotta monuments of Bishnupur, West Bengal.</td>
|
||||||
|
<td>Int. J. Pharm. Sci. Drug Res.</td>
|
||||||
|
<td>12</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Mandal, S., Mandal, T. K., & Rath, J.</td>
|
||||||
|
<td>Investigation of therapeutically active constituents of homeopathy medicine from Justicia adhatoda L. and its clinical verification.</td>
|
||||||
|
<td>Journal of Pharmacognosy and Phytochemistry</td>
|
||||||
|
<td>8</td>
|
||||||
|
<td>3790-3796</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Mandal S and Rath J</td>
|
||||||
|
<td>Phytochemical and antioxidant activities of ethno-medicinal plants used by fisher folks of Chilika lagoon for Indigenous.</td>
|
||||||
|
<td>Journal of Pharmacognosy and Phytochemistry</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>55-65</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Rath, J., Mandal, S., & Adhikary, S. P.</td>
|
||||||
|
<td>Ecophysiology of the estuarine cyanobacterium Lyngbya aestuarii to varying salinity in vitro.</td>
|
||||||
|
<td>Acta physiologiae plantarum (IF: 2.4)</td>
|
||||||
|
<td>36</td>
|
||||||
|
<td>409-419</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Mandal, S., & Rath, J.</td>
|
||||||
|
<td>Algal colonization and its ecophysiology on the fine sculptures of terracotta monuments of Bishnupur, West Bengal, India.</td>
|
||||||
|
<td>International Biodeterioration & Biodegradation (IF: 4.1)</td>
|
||||||
|
<td>84</td>
|
||||||
|
<td>291-299</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Rath, J., Mandal, S., & Adhikary, S. P.</td>
|
||||||
|
<td>Salinity induced synthesis of UV-screening compound scytonemin in the cyanobacterium Lyngbya aestuarii.</td>
|
||||||
|
<td>Journal of Photochemistry and Photobiology B: Biology (IF: 3.9)</td>
|
||||||
|
<td>115</td>
|
||||||
|
<td>5-8</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Mandal, S., Rath, J., & Adhikary, S. P.</td>
|
||||||
|
<td>Adaptation strategies of the sheathed cyanobacterium Lyngbya majuscula to ultraviolet-B.</td>
|
||||||
|
<td>Journal of Photochemistry and Photobiology B: Biology (IF: 3.9)</td>
|
||||||
|
<td>102</td>
|
||||||
|
<td>15-22</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<!-- Book -->
|
||||||
|
<tr>
|
||||||
|
<td colspan="7"><strong>Book</strong></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Mandal, S., & Rath, J.</td>
|
||||||
|
<td>Extremophilic cyanobacteria for novel drug development.</td>
|
||||||
|
<td>Springer, USA</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<!-- Book Chapters -->
|
||||||
|
<tr>
|
||||||
|
<td colspan="7"><strong>Book Chapters</strong></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Bhakat S, Mandal S and Rath J</td>
|
||||||
|
<td>Biofilm of Cyanobacteria: Environmental roles and Human health</td>
|
||||||
|
<td>Nova Science Publishers, Inc, USA</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Rath J, Mandal S and Padhi BK</td>
|
||||||
|
<td>Prospective in Diatom Nanotechnology</td>
|
||||||
|
<td>Daya Publishing House, New Delhi</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>25-35</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Rath J and Mandal S</td>
|
||||||
|
<td>Sequestration of Heavy Metals from Waste Water Effluent by Micro-algae</td>
|
||||||
|
<td>APH Publication</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>55-70</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Refresher course on “Recent trends on plant research”</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Online Faculty Development Programme on “Methodology & Data Interpretation of Analytical Instrumentation Technique”</td>
|
||||||
|
<td>Sathyabama University</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Inter-disciplinary Refresher Course on “Advances in Instrumentation and Automation: Role of ICT”</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>UGC-Sponsored Orientation Programme</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Glycans of extremophilic cyanobacteria ………. anti-infective agents.</td>
|
||||||
|
<td>International Symposium on Biodiversity, Biology and Biotechnology of Algae (ISBBBA-2020)</td>
|
||||||
|
<td></td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Biodeterioration of Konark stone monument by Hassallia byssoidea and understanding its biodeterioration mechanism to develop conservation strategies</td>
|
||||||
|
<td>European Conference on Biodeterioration of Stone Monuments (ECBSM 2020)</td>
|
||||||
|
<td></td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Survival strategies of desiccated Lyngbya corticcola in terracotta monuments of Bishnupur, India causing biodeterioration</td>
|
||||||
|
<td>15th International Biodeterioration and Biodegradation Symposium, Vienna, Austria</td>
|
||||||
|
<td></td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Wise use of Algae of East Calcutta Wetland (Ramsar Site) as a candidate for resource recovery systems leading to the livelihood of stakeholders</td>
|
||||||
|
<td>Asian Wetlands Symposium, Kota Kinabalu, Malaysia</td>
|
||||||
|
<td></td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Algal Diversity of East Calcutta Wetland, Ramsar Site-Potential Candidate for Phycoremediation of Metropolitan Waste Removal</td>
|
||||||
|
<td>National Symposium on Recent Trends in Algal Biotechnology, MACFAST, Kerala</td>
|
||||||
|
<td></td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td></td>
|
||||||
|
<td>Algal colonization and deterioration of fine sculpture on terracotta temples of Bishnupur, West Bengal</td>
|
||||||
|
<td>International Conference on Phycological Research, CAS Botany, Banaras Hindu University, Varanasi</td>
|
||||||
|
<td></td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code) taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2"><strong>(NEP)</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Phycology and Microbiology, Course Code: DS-1T; DS-1P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Mycology and Phytopathology, Course Code: BOTDSC202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Phycology Microbiology Mycology Phytopathology Archegoniate, Course Code: BOTMIN101T & BOTMIN101P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Floriculture and Gardening, Course Code: BOTHSEC101M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2"><strong>(CBCS)</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Genetics, Course Code: BOTACOR07T; BOTACOR07P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Molecular Biology, Course Code: BOTACOR08T; BOTACOR08P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Plant Systematics, Course Code: BOTACOR10T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Plant Metabolism, Course Code: BOTACOR13T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Plant Ecology and Taxonomy, Course Code: BOTHGEC02T, BOTHGEC02P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Analytical Techniques in Plant Sciences, Course Code: BOTADSE04P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Biostatistics, Course Code: BOTADSE06T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Writing and Photography</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
268
faculty/dr-somnath-mandal.php
Normal file
268
faculty/dr-somnath-mandal.php
Normal file
@@ -0,0 +1,268 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Somnath Mandal</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:somnathmandal@scc.ac.in" class="fw-bold">somnathmandal@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9749311816</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Solid Mechanics</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Complex Analysis</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B. Sc.</td>
|
||||||
|
<td>2001</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M. Sc.</td>
|
||||||
|
<td>2003</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph. D.</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>University of North Bengal</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>03.12.2019</td>
|
||||||
|
<td>date</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Siliguri Institute of Technology</td>
|
||||||
|
<td>01.07.2005</td>
|
||||||
|
<td>02.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td-</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
483
faculty/dr-sudipta-purkait.php
Normal file
483
faculty/dr-sudipta-purkait.php
Normal file
@@ -0,0 +1,483 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Sudipta Purkait</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:spurkait@scc.ac.in" class="fw-bold">spurkait@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Advanced Algebra, Fuzzy Set Theory, Fuzzy Algebra </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Ring Theory, Clean rings, Semiring theory, Number Theory</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Mathematics Honours</td>
|
||||||
|
<td>University of Calcutta (RKMRC Narendrapur)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>IIT Guwahati</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>DSKPDF Post Doc fellow</td>
|
||||||
|
<td>Department of Pure Mathematics, University of Calcutta</td>
|
||||||
|
<td>01.09.2016</td>
|
||||||
|
<td>31.08.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Department of Mathematics, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.11.2019</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>UGC JRF</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>CSIR JRF</td>
|
||||||
|
<td>UGC CSIR</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>CSIR SRF</td>
|
||||||
|
<td>UGC CSIR</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>DSKPDF Post Doc fellowship</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>S. Purkait, T.K. Dutta & S. Kar</td>
|
||||||
|
<td>k-prime and k-semiprime ideals of semirings</td>
|
||||||
|
<td>Asian-European Journal of Mathematics</td>
|
||||||
|
<td>14</td>
|
||||||
|
<td>2150041</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>S. Purkait</td>
|
||||||
|
<td>On strongly m-clean rings and m-semiperfect rings</td>
|
||||||
|
<td>Communications in Algebra</td>
|
||||||
|
<td>48</td>
|
||||||
|
<td>4531-4541</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>S. Purkait, T.K. Dutta & S. Kar</td>
|
||||||
|
<td>On m-clean and strongly m-clean rings</td>
|
||||||
|
<td>Communications in Algebra</td>
|
||||||
|
<td>48</td>
|
||||||
|
<td>218-227</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>S. Kar, S. Purkait & R. Sarkar</td>
|
||||||
|
<td>Birkhoff center of c-semiring</td>
|
||||||
|
<td>Asian-European Journal of Mathematics</td>
|
||||||
|
<td>12</td>
|
||||||
|
<td>1950003</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>S. Kar & S. Purkait</td>
|
||||||
|
<td>On k-Regularities in Fuzzy Semihyperrings</td>
|
||||||
|
<td>International Journal of Applied and Computational Mathematics</td>
|
||||||
|
<td>03</td>
|
||||||
|
<td>1121-1141</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>S. Kar, S. Purkait & B. Davvaz</td>
|
||||||
|
<td>Fuzzy k-Primary Decomposition of Fuzzy k-Ideal in a Semiring</td>
|
||||||
|
<td>Fuzzy Information and Engineering</td>
|
||||||
|
<td>07</td>
|
||||||
|
<td>405-422</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>S. Kar, S. Purkait & K.P. Shum</td>
|
||||||
|
<td>Interval-valued fuzzy k-quasi-ideals and k-regularity of semirings</td>
|
||||||
|
<td>Afrika Matematika</td>
|
||||||
|
<td>26</td>
|
||||||
|
<td>1413-1425</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>S. Kar & S. Purkait</td>
|
||||||
|
<td>Characterization of some k-regularities of semirings in terms of fuzzy ideals of semirings</td>
|
||||||
|
<td>Journal of Intelligent & Fuzzy Systems</td>
|
||||||
|
<td>27</td>
|
||||||
|
<td>3089-3101</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>T.K. Dutta, S. Kar & S. Purkait</td>
|
||||||
|
<td>Interval-valued Fuzzy k-ideals and k-regularity of Semirings</td>
|
||||||
|
<td>Fuzzy Information and Engineering</td>
|
||||||
|
<td>05</td>
|
||||||
|
<td>235-251</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>33rd Orientation/ Faculty Induction Programme (Online)</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Refreshers Course in Mathematical Sciences</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>S. Purkait</td>
|
||||||
|
<td>Study of strongly m-clean ring and m-semiperfect ring</td>
|
||||||
|
<td>International Webinar on Advances in Mathematical Sciences</td>
|
||||||
|
<td>Department of Mathematics, WBSU, Barasat</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>S. Purkait</td>
|
||||||
|
<td>On strongly m-clean and m-semiperfect ring</td>
|
||||||
|
<td>International Web Conference on Science, Humanities and Social Science (IWCARSHSS 2020)</td>
|
||||||
|
<td>Department of Applied Mathematics, MBB University, Tripura</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>S. Purkait</td>
|
||||||
|
<td>On m-clean and strongly m-clean rings</td>
|
||||||
|
<td>National Conference on Ancient and Modern Mathematics (NCAMM 2019)</td>
|
||||||
|
<td>Department of Applied Mathematics, MBB University, Tripura</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>S. Purkait & R. Sarkar</td>
|
||||||
|
<td>Birkhoff centre of c-semiring</td>
|
||||||
|
<td>Visva-Bharati meet on Algebra and its applications</td>
|
||||||
|
<td>Department of Mathematics, Visva-Bharati</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Sessions</th>
|
||||||
|
<th>Semesters</th>
|
||||||
|
<th>Courses</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>2019-20</td>
|
||||||
|
<td>Sem-I & Sem-II (CBCS)</td>
|
||||||
|
<td>MTMACOR01T, MTMACOR02T, MTMACOR03T, MTMGCOR01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-III & Sem-IV (CBCS)</td>
|
||||||
|
<td>MTMACOR05T, MTMHGEC03T, MTMACOR07T, MTMACOR10T, MTMGCOR03T, MTMGCOR04T, MTMSSEC02M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>2020-21</td>
|
||||||
|
<td>Sem-I & Sem-II (CBCS)</td>
|
||||||
|
<td>MTMACOR02T, MTMACOR03T, MTMHGEC01T, MTMGCOR01T, MTMGCOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-III & Sem-IV (CBCS)</td>
|
||||||
|
<td>MTMACOR10T, MTMGCOR03T, MTMGCOR04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-V & Sem-VI (CBCS)</td>
|
||||||
|
<td>MTMACOR12T, MTMACOR14T, MTMADSE02T, MTMADSE05T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>2021-22</td>
|
||||||
|
<td>Sem-I & Sem-II (CBCS)</td>
|
||||||
|
<td>MTMACOR02T, MTMACOR03T, MTMHGEC01T, MTMGCOR01T, MTMGCOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-III & Sem-IV (CBCS)</td>
|
||||||
|
<td>MTMACOR10T, MTMGCOR03T, MTMGCOR04T, MTMSSEC01M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-V & Sem-VI (CBCS)</td>
|
||||||
|
<td>MTMACOR12T, MTMACOR14T, MTMADSE02T, MTMSSEC02M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>2022-23</td>
|
||||||
|
<td>Sem-I & Sem-II (CBCS)</td>
|
||||||
|
<td>MTMACOR02T, MTMACOR03T, MTMHGEC01T, MTMGCOR01T, MTMGCOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-III & Sem-IV (CBCS)</td>
|
||||||
|
<td>MTMACOR10T, MTMHGEC03T, MTMGCOR03T, MTMGCOR04T, MTMSSEC01M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-V & Sem-VI (CBCS)</td>
|
||||||
|
<td>MTMACOR12T, MTMACOR14T, MTMGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>2023-24</td>
|
||||||
|
<td>Sem-I & Sem-II (NEP)</td>
|
||||||
|
<td>MTMDSC101T, MTMCOR101T, MTMMIN101T, MTMCOR202T, MTMMIN202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-III & Sem-IV (CBCS)</td>
|
||||||
|
<td>MTMACOR10T, MTMHGEC03T, MTMGCOR03T, MTMGCOR04T, MTMSSEC01M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-V & Sem-VI (CBCS)</td>
|
||||||
|
<td>MTMACOR12T, MTMACOR14T, MTMADSE05T, MTMGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>2024-25</td>
|
||||||
|
<td>Sem-I & Sem-II (NEP)</td>
|
||||||
|
<td>MTMCOR101T, MTMMIN101T, MTMCOR202T, MTMMIN202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-III & Sem-IV (NEP)</td>
|
||||||
|
<td>MTMCOR303T, MTMMIN303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Sem-V & Sem-VI (CBCS)</td>
|
||||||
|
<td>MTMACOR12T, MTMACOR14T, MTMADSE02T, MTMADSE05T, MTMGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
670
faculty/dr-swapan-kumar-sardar.php
Normal file
670
faculty/dr-swapan-kumar-sardar.php
Normal file
@@ -0,0 +1,670 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Swapan Kumar Sardar</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor in Anthropology</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc(Honours), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:sks.anthro@scc.ac.in" class="fw-bold">sks.anthro@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">7439663570</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Social Culture Anthropology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Socio-Culture Anthropology, Bio-Culture Anthropology, Gerontology, Ecology and Health, Truism Anthropology, Tribal Study, Nutrition, Visual Anthropology, Biasness Anthropology, Human Right </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-journal-tab" data-bs-toggle="pill" data-bs-target="#v-pills-journal" type="button" role="tab" aria-controls="v-pills-journal" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/news.svg" alt="" />Journal Publication </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-paper-tab" data-bs-toggle="pill" data-bs-target="#v-pills-paper" type="button" role="tab" aria-controls="v-pills-paper" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/paper.svg" alt="" />Paper Presentation </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-award-tab" data-bs-toggle="pill" data-bs-target="#v-pills-award" type="button" role="tab" aria-controls="v-pills-award" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button> -->
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-hand-tab" data-bs-toggle="pill" data-bs-target="#v-pills-hand" type="button" role="tab" aria-controls="v-pills-hand" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/hand.svg" alt="" />Membership </button> -->
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.A</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>History</td>
|
||||||
|
<td>The University of Burdwan</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>SKBU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Translator</td>
|
||||||
|
<td>National Translation Mission, Central Institution of Indian Language, Mysore</td>
|
||||||
|
<td>3rd October, 2013</td>
|
||||||
|
<td>15th October, 2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Research Assistant</td>
|
||||||
|
<td>SKBU</td>
|
||||||
|
<td>August, 2016</td>
|
||||||
|
<td>November, 2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>Research Assistant</td>
|
||||||
|
<td>B. R. Ambedkar Institute of Panchayat and Rural Development</td>
|
||||||
|
<td>May, 2017</td>
|
||||||
|
<td>August, 2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04</td>
|
||||||
|
<td>Ph. D Research Scholar</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Award of Calcutta Research Fellowship</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Ph. D Award</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-journal" role="tabpanel" aria-labelledby="v-pills-journal-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">JOURNAL PUBLICATION</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Published On</th>
|
||||||
|
<th>Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Observation of microwave plasmons in one-dimensional conjugated polymer chain. B Mondal, D Majumdar and S K Saha Appl. Phys. Lett. 94 (2009) 183109.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mechanism of Ultrasonic Energy-Assisted Formation of V-, Y-Shaped Nano-Structures in Conjugated Polymers D Majumdar R P Maity, S Basu, and S K Saha J. Nano Sc. & Nanotech. 9 (2009) 6896-6901.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Graphene quantum sheet: A new material for spintronic application. S K Saha, M Baskey, D Majumdar. Adv. Mater. 22 (2010) 5531.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Observation of ferroelectric response in conjugated polymer nanotubes. D Majumdar and S K Saha Appl. Phys. Lett., 96 (2010) 183113.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Poly(3-hexylthiophene) nanotubes with superior electronic and optical properties. D Majumdar and S K Saha Chem. Phys. Lett., 489 (2010) 219.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Synthesis of single crystalline micron-sized rectangular silver bar. B Mondal, D Majumdar and S K Saha, J. Mater. Research. 25 (2010) 383.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Nanotechnology: Its current scope and prospect Dipanwita Majumdar Acad. J Aureole Vol 3(2), (2011) 114-119.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Epitaxial growth of crystalline polyaniline on reduced graphene oxide D Majumdar M Baskey, S K Saha Macromol. Rapid Commun. 32 (2011) 1277.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Graphene and its composites as supercaps. Dipanwita Majumdar Acad. J Aureole 4, (2013) 11-16.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Reduced Graphene Oxide: An Efficient Supercapacitor Material. Dipanwita Majumdar Academic J. Aureole, 5 (2014) 42-46.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Graphene-MnO2 Composite as Electrocatalyst for Oxygen Reduction Reactions. Dipanwita Majumdar Academic J. Aureole, 6&7(1) (2015-16) 31-37.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Charge Transport in Polypyrrole Nanotubes. Dipanwita Majumdar, S.K. Saha J. Nanosci. Nanotechnol. 15 (2015) 9975-9981.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Graphene-Polyaniline nanocomposites as Proficient Energy Storage Material-An Overview. Dipanwita Majumdar Innovative Energy & Research 5 (2016) 2.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Sonochemically Synthesized Beta-Cyclodextrin Functionalized Graphene Oxide and its Efficient Role in Adsorption of Water Soluble Brilliant Green Dye. Dipanwita Majumdar J Environ Anal Toxicol 6 (2016) 5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Hydroxy functionalized Graphene: A Proficient Energy Storage Material, Dipanwita Majumdar and Sujata Pal, J Fundam. Renewable Energy Appl., 6 (2016) 209.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Microwave-assisted synthesis of Mn2O3 porous balls as bifunctional electrocatalyst for oxygen reduction and evolution reaction Dipanwita Majumdar, et al Catal. Sci. Technol., 6(5) (2016) 1417-1429.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Synthesis, characterization and electrochemical study of hydroxy-functionalized graphene/MnO2 nanocomposite D Majumdar, SK Bhattacharya Materials Today: Proceedings 3 (10), 3872-3877.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Sonochemically synthesized hydroxy-functionalized graphene-MnO2 nanocomposite for supercapacitor applications. Dipanwita Majumdar, and Swapan K Bhattacharya J Appl Electrochem 47 (2017) 789-801.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Proficiency of graphene oxide in adsorption and removal of methylene blue from water: An overview. Dipanwita Majumdar J Environ Chem Toxicol 1 (2017) 4-8.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Detoxification of Heavy Metal ion-contaminated Drinking Water by Green Technology - A Short Overview. Dipanwita Majumdar Current Green Chemistry 4 (2017) 38-44.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Functionalized Graphene-MnO2 nanocomposite in Fuel Cell Applications Dipanwita Majumdar Asian Journal of Science and Technology, 8(3),(2017) 4394-4398.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Ultrasound assisted formation of reduced graphene oxide-copper (II) oxide nanocomposite for energy storage applications Dipanwita Majumdar, Nirmal Baugh, and Swapan K Bhattacharya Colloids and Surfaces A: Physicochem. Eng. Aspects 512 (2017) 158-170.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>An Overview on Ruthenium Oxide Composites-Challenging Material for Energy Storage Applications D Majumdar Materials Science Research India 15(1) ,(2018) 30-40.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Anodic Oxidation of Butan-1-ol on Reduced Graphene Oxide-Supported-Pd-Ag-Nanoparticles/ Nanoalloy for Fuel Cell Applications Ankita Mahajan, Senjuti Banik, Dipanwita Majumdar and Swapan Kumar Bhattacharya ACS Omega, 4 (2019) 4658-4670.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Temperature Control Synthesis of Platinum Nanoparticle-Decorated Reduced Graphene Oxide for Electrocatalytic Oxidation of Methanol. Senjuti Banik; Ankita Mahajan; Apurba Ray; Dipanwita Majumdar; Sachindranath Das; Swapan Kumar Bhattacharya Flat Chem (2019) Flat Chem 16 (2019) 100111.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis and characterization of biopolymer based hybrid hydrogel nanocomposite and study of their electrochemical efficacy. Arindam Giri, Rahul Bhowmick, Chandraday Prodhan, Dipanwita Majumdar, Swapan Kumar Bhattacharya M Ali International Journal of Biological Macromolecules.123 (2019) 228-238.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Engineering of Gadolinium-Decorated Graphene Oxide Nanosheets for Multimodal Bioimaging and Drug Delivery. Nitya Chawda, Mainak Basu, Dipanwita Majumdar, Raju Poddar, Santosh Kumar Mahapatra, Indrani Banerjee, ACS OMEGA 4(2019) 12470-12479.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Optimization of physicochemical and dielectric features in the conductive copolymers of aniline and 2-aminophenol US Waware, AMS Hamouda, D Majumdar Polymer Bulletin 76 (11), 5603-5617.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review on V2O5 and Its Carbon-Based nanocomposites as Supercapacitor Electrode Materials. Dipanwita Majumdar, Manas Mandal and Swapan Kumar Bhattacharya ChemElectroChem 2019, 6, 1623. (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review of Recent Progress in Ruthenium Oxides based Composites for Supercapacitor Applications. Dipanwita Majumdar, Thandavarayan Maiyalagan, Zhongqing Jiang ChemElectroChem 6 (2019) 4343 (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Magnetic, pseudocapacitive and H2O2-electrosensing properties of self assembled superparamagnetic Co0.3Zn0.7Fe2O4 with enhanced saturation magnetization Rituparna Mondal, Koyel Sarkar, Subhrajyoti Dey, Dipanwita Majumdar, Swapan Bhattacharya, Pintu Sen, Sanjay Kumar, ACS Omega 47 (2019) 12632-12646.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis, characterization and physicochemical studies of copolymers of aniline and 3 nitroaniline Umesh Somaji Waware, A. M. S. Hamouda, Dipanwita Majumdar Polym. Bull. (2019). pp1-20 DOI: https://doi.org/10.1007/s00289-019-02957-y.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Journey from Supercapacitor to Supercapatteries: Recent advancements in electrochemical energy storage system, D Majumdar et al. Emergent Materials, Springer, ISSN : 2522-574X, https://doi.org/10.1007/s42247-020-00090-5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Review on Current Progress of MnO2-based Ternary Nanocomposites for Supercapacitor Applications, D Majumdar, Chemelectrochem, Wiley, doi: https://doi.org/10.1002/celc.202001371.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent advancements of copper oxide based nanomaterials for supercapacitor applications D Majumdar, S Ghosh Journal of Energy Storage, 101995, https://doi.org/10.1016/j.est.2020.101995.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent progress in copper sulfide based nanomaterials for high energy supercapacitor applications D Majumdar Journal of Electroanalytical Chemistry, https://doi.org/10.1016/j.jelechem.2020.114825.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Majumdar D. Role of MXenes/Polyaniline Nanocomposites in Fabricating Innovative Supercapacitor Technology. Advanced Energy Conversion Materials [Internet]. 2021 Nov. 20 [cited 2022 Jan. 13]; 3(1): 30-53. Available from: https://ojs.wiserpub.com/index.php/AECM/article/view/1148, https://doi.org/10.37256/aecm.3120221148.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Kinsuk Das, Dipanwita Majumdar, Prospects of MXenes/graphene nanocomposites for advanced supercapacitor applications, Journal of Electroanalytical Chemistry, Volume 905, 2022, 115973, ISSN 1572-6657, https://doi.org/10.1016/j.jelechem.2021.115973.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Room Temperature Synthesis of Perovskite Hydroxide, MnSn(OH)6: A Negative Electrode for Supercapacitor Authors Manas Mandal, Krishna Chattopadhyay, Malay Chakraborty, Wonjae Shin, Kamal Kanti Bera, Sujit Chatterjee, Akbar Hossain, Dipanwita Majumdar, Arup Gayen, Changwoon Nah, Swapan Kumar Bhattacharya Publication date 2022/11 Journal Electronic Materials Letters Volume 18 Issue 6 Pages 559-567 Publisher The Korean Institute of Metals and Materials.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Recent Developments of Methanol Electrooxidation Using Nickel-based Nanocatalysts Authors Dipanwita Majumdar, Swapan Kumar Bhattacharya Publication date 2022/10/26 Source ChemistrySelect Volume 7 Issue 40 Pages e202201807.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Graphitic Carbon Nitride (g-C3N4): A Proficient Electrode Material for Flexible Supercapacitors Authors Rudra Sarkar and Munmun Mondal & Dipanwita Majumdar Publication date 2023/12/7 Journal Advanced Materials Science and Technology Volume 5 Issue 2 Pages https://doi.org/10.37155/2717-526X-0502-.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Swapan Kumar Sardar, Dr. Diptendu Chatterjee</td>
|
||||||
|
<td>A comparative Account of BMI, Height Weight among the Santal and Bhumij adolescences.</td>
|
||||||
|
<td>Journal of the Department of Anthropology</td>
|
||||||
|
<td>16 & 17</td>
|
||||||
|
<td>299</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-paper" role="tabpanel" aria-labelledby="v-pills-paper-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Paper Presentation</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Paper Title</th>
|
||||||
|
<th>Organizer</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2010</td>
|
||||||
|
<td>2010: Oral Presentation: on "Formation Dynamics of V- and Y-shaped Polyaniline nanowires". 4-5th Feb, 2010 (UGC sponsored National Seminar: EMERGING CONCERNS AND ADVANCES IN CHEMISTRY).</td>
|
||||||
|
<td>Lady Brabourne College (Kolkata)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Jan.2011</td>
|
||||||
|
<td>2011: Poster presentation: on "Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction". (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS).</td>
|
||||||
|
<td>Sree Gopal Banerjee College, Bagati, Mogra, Hooghly</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Jul.2013</td>
|
||||||
|
<td>2013: Oral Presentation: ON THE TOPIC "Nanopesticides: A Challenging Domain of Current Research" by D Majumdar 2013. (National Conference).</td>
|
||||||
|
<td>Panchkot Mahavidyalaya, Purulia</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Aug.2015</td>
|
||||||
|
<td>2015: Poster presentation: on "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Graphene Oxide-Copper (II) Oxide composites." on 1-2nd August, 2015. (National Conference/ National Symposium).</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.Dec.2015</td>
|
||||||
|
<td>2015: Poster presentation: NANOS 2015- International conference on the topic "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Reduced-Graphene Oxide-Copper (II) Oxide composites."</td>
|
||||||
|
<td>GITAM University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2016</td>
|
||||||
|
<td>2016: Poster presentation: on the topic "Role of beta-cyclodextrin-functionalized graphene oxide in removal of organic-dye water pollutants." (National Conference).</td>
|
||||||
|
<td>Dept of Chemistry, Burdwan University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.Mar.2016</td>
|
||||||
|
<td>2016: Poster presentation: ICMRA 2016- "Synthesis, Characterization and Electrochemical Study of Hydroxy-Functionalized Graphene/MnO2 nanocomposite" (International Conference).</td>
|
||||||
|
<td>CMR Technical Campus, Hyderabad</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.May.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Synthesis, Characterization and Electrochemical Studies of hydroxy functionalized Graphene-MnO2 Nanocomposite" Dipanwita Majumdar INTERNATIONAL CONFERENCE ON NANOTECHNOLOGY FOR BETTER LIVING (ICNBL-2016) (25/5/2016 -29/5/2016 NIT SRINAGAR AND IIT KANPUR.</td>
|
||||||
|
<td>NIT SRINAGAR, JAMMU AND KASHMIR</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Tuning of Charge Transport Properties in Polypyrrole Nanotubes" Dipanwita Majumdar UGC sponsored ONE DAY National Seminar 2016 RECENT ADVANCES IN LIFE SCIENCE IN THE LIGHT OF CHEMISTRY.</td>
|
||||||
|
<td>Bethune College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation on "Adsorption and Removal of Water Soluble Methylene Blue Dye by Beta-Cyclodextrin Functionalized Graphene Oxide" Dipanwita Majumdar UGC sponsored National Seminar 2016 ENTHRALLING FACETS OF MOLECULAR MANIFESTATION IN CHEMICAL SCIENCES.</td>
|
||||||
|
<td>Bidhannagar College, SALTLAKE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: Role of Sonochemically synthesized Beta-Cyclodextrin Functionalized Graphene Oxide in Adsorption of Water Soluble Brilliant Green Dye: Dipanwita Majumdar UGC sponsored National Seminar 2016 on RECENT TRENDS IN CHEMICAL RESEARCH.</td>
|
||||||
|
<td>Sarojini Naidu College for Women and Hiralal Mazumdar College for Women</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.Nov.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Adsorption and Removal of Soluble Methylene Blue Dye from Water by Sorbefacient Graphene Oxide" Dipanwita Majumdar UGC-Sponsored two day National Seminar on "MODERN TRENDS IN CHEMICAL SCIENCES".</td>
|
||||||
|
<td>Dept of Chemistry, Narasinha Dutt College and Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.Aug.2018</td>
|
||||||
|
<td>2018: Poster presentation: Recent Advancements of RuO2/Functionalized-Graphene Composites for Supercapacitor Applications By Dipanwita Majumdar at Recent Advances in Molecules and Materials: RA2M 2018' (International Conference).</td>
|
||||||
|
<td>School of Applied Science & Humanities, Haldia Institute of Technology, Haldia-721657 and Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Jan.2019</td>
|
||||||
|
<td>2019: Poster presentation: Supercapatteries: A Revolution in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference on Advances in Nanomaterials and Devices for Energy and Environment (ICAN-2019) (International Conference).</td>
|
||||||
|
<td>Advanced Materials and Nano-electronics Research Group of CNT Lab, in ABV-IIITM, Gwalior</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Mar.2019</td>
|
||||||
|
<td>2019: Oral presentation: Supercapacitors to Supercapatteries: Renaissance in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference of Emerging Technologies and Sustainable Development 2019 (ICETSD '19)(International Conference).</td>
|
||||||
|
<td>Government College of Engineering and Leather Technology, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08.Jan.2020</td>
|
||||||
|
<td>2020: Two-Day International Seminar on "Innovation, Expansion, Impacts and Challenges in Chemical and Biological Sciences" to be held on 8-9th January, 2020.</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Feb.2020</td>
|
||||||
|
<td>2020: National Symposium on Renewable Energy for Sustainable Future: Materials & Technology Development at Heritage Institute of Technology on 27/02/2020 on : Recent progress of supercapacitors.</td>
|
||||||
|
<td>Heritage Institute of Technology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Faculty Induction Programme </td>
|
||||||
|
<td>University Grand Commission, Malviya Mission Teacher Training Center, Mizoram University</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Swapan Kr. Sardar</td>
|
||||||
|
<td>A comparative Account of BMI, Height Weight among the Santal and Bhumij adolescences.</td>
|
||||||
|
<td>Human Diversity and Development: From Local to Global Perspective</td>
|
||||||
|
<td>Department of Anthropology, Calcutta University</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Swapan Kr. Sardar</td>
|
||||||
|
<td>Nutritional status of Bhumij and Santal elderly population in WB</td>
|
||||||
|
<td>Post-Colonial Anthropological Research with Special Reference to Eastern and North Eastern India: Tribes and Beyond</td>
|
||||||
|
<td>Department of Anthropology, Calcutta University</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Swapan Kumar Sardar</td>
|
||||||
|
<td>Nutrition and behavior determinants of menstruation</td>
|
||||||
|
<td>Food and Nutrition among Tribal People</td>
|
||||||
|
<td>Department of Anthropology (SKBU)</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Subjects (Paper with Code) taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>UG (CBCS):</strong> ANTACOR01T, ANTACOR02T, ANTACOR03T, ANTACOR07T, ANTACOR07P, ANTACOR10T, ANTACOR10P, ANTACOR12T, ANTACOR14T, ANTADSE01T, ANTADSE02T, ANTADSE02P, ANTADSE03T, ANTADSE04T, ANTADSE05T, ANTADSE06P, ANTSSEC01M, ANTSSEC02M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>UG (NEP):</strong> ANTADSC101T, ANTDSC303T, MD-1, MA/ MB-2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>PG:</strong> ANTPCOR02T, ANTPCOR03T, ANTPCOR07T, ANTPCOR08T, ANTPCOR10T, ANTPCOR11T, ANTPCOR12T, ANTPCOR15P</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Computer Diploma</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-award" role="tabpanel" aria-labelledby="v-pills-award-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Award Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Qualified in nationally competitive examination, JAM -2005, conducted by Indian Institute of Technology (IIT), All India Rank-162</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, CSIR-UGC NET - 2006, conducted jointly by Council of Scientific and Industrial Research (CSIR) and University Grants Commission (UGC), Govt. of India, 2006, December for lectureship and research fellowship. Selected for SPM interview under CSIR.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2006, conducted by Indian Institute of Technology (IIT), All India Rank-281</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2007, conducted by Indian Institute of Technology (IIT), All India Rank-12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Poster award for the presentation: on “Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction”. (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS At Sree Gopal Banerjee College, Bagati, Mogra, Hooghly, West Bengal)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>2nd best poster presentation at International Conference on Materials Research and Applications (ICMRA-2016) from 11-13 March 2016 @ CMR TECHNICAL CAMPUS, Kandlakoya (V), Medchal (M), RR Dist, Telangana, India-501401, (Approved by AICTE, New Delhi, Affiliated to JNTU, Hyderabad.)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>3rd Young Women Scientist paper presentation at International Conference on Nanotechnology for Better Living, 2016 jointly organized by IIT Kanpur and NIT Srinagar at Srinagar, J&K, India on 25-29th May, 2016.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Research Excellence Award-2021, InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Young Researcher Award-2021 InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Women Researcher Award in the International Scientist Awards on Engineering, Science and Medicine by VDGOOD Professional Association</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Asia’s Science, Technology and Research Awards 2023 (ASTRA 2023) Outstanding Researcher Award in Materials Science</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-hand" role="tabpanel" aria-labelledby="v-pills-hand-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Membership</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
<th>Membership</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Moderator and Question Paper Setters of UG and PG Level CHEMISTRY COURSES IN various reputed Universities in India.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life Member at Indian Physical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life member of Indian Association for the Cultivation of Science, Jadavpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Reviewer of many reputed International peer-reviewed journals (Springer, Elsevier, Wiley)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>InSc Professional Member, Institute of Scholars, Department of Awards, Muddhinapalya Bengaluru-560091, Karnataka, India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Editorial Board Member of Peer-reviewed International Journal: Materials Science Research India for 2017 and 2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
349
faculty/dr-tulika-ghosh.php
Normal file
349
faculty/dr-tulika-ghosh.php
Normal file
@@ -0,0 +1,349 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr Tulika Ghosh</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor in Chemistry</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:tulikaghosh@sreechaitanyacollege.ac.in" class="fw-bold">tulikaghosh@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Inorganic Chemistry </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: <br>
|
||||||
|
<ul>
|
||||||
|
<li>Complexes of metal ions of first transition series</li>
|
||||||
|
<li>Complexes of some metal (mainly Ru, Rh, and Pd) ions of second transition series</li>
|
||||||
|
<li>Complexes of rare earth metal ions</li>
|
||||||
|
<li>Analysis of heavy metals in water and soil sample</li>
|
||||||
|
</ul>
|
||||||
|
</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2003</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>Siliguri College, University of North Bengal</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>University of North Bengal</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Inorganic Chemistry</td>
|
||||||
|
<td>University of Hyderabad</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Guest teacher on temporary basis</td>
|
||||||
|
<td>Cooch Behar Panchanan Barma University</td>
|
||||||
|
<td>24/11/2015</td>
|
||||||
|
<td>12/07/2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>15/07/2021</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Junior Research Fellowship (JRF)</td>
|
||||||
|
<td>University Grants Commission, India</td>
|
||||||
|
<td>2006</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Senior Research Fellowship (SRF)</td>
|
||||||
|
<td>University Grants Commission, India</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Dr. D. S. Kothari Postdoctoral Fellowship</td>
|
||||||
|
<td>University Grants Commission, India</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Tulika Ghosh, Abhik Mukhopadhyay, Kummari S. C. Dargaiah, Samudranil Pal*</td>
|
||||||
|
<td>Syntheses and structures of nickel(II) and copper(II) complexes with biacetyl bis(benzoylhydrazone): One-dimensional self-assembly via π–π interaction and hydrogen bonding</td>
|
||||||
|
<td>Structural Chemistry</td>
|
||||||
|
<td>21</td>
|
||||||
|
<td>147-152</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Tulika Ghosh, Samudranil Pal*</td>
|
||||||
|
<td>A double helical dicopper(II) complex with biacetyl bis(benzoylhydrazone)</td>
|
||||||
|
<td>Inorganica Chimica Acta</td>
|
||||||
|
<td>363</td>
|
||||||
|
<td>3632-3636</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Tulika Ghosh, Sunirban Das, Samudranil Pal*</td>
|
||||||
|
<td>Bis(2-(1H-imidazol-2-yl)-pyridine)copper(II): Effects of counteranions on molecular and supramolecular structures</td>
|
||||||
|
<td>Polyhedron</td>
|
||||||
|
<td>29</td>
|
||||||
|
<td>3074-3080</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Faculty Induction Programme</td>
|
||||||
|
<td>UGC-Malaviya Mission Teacher Training Centre</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Level</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>National Symposium on Recent Advances in Chemistry & Industry</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Kolkata</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>14th National Symposium in Chemistry (NSC-14) & 6th CRSI-RSC Symposium in Chemistry</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Thiruvananthapuram</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Symposium on Modern Trends in Inorganic Chemistry-XIV</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>School of Chemistry, University of Hyderabad, Hyderabad</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>3rd Asian Conference on Coordination Chemistry (ACCC-3, 2011)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Indian Habitat Center, New Delhi</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>International</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Chemfest-2012</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>University of Hyderabad, Hyderabad</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Chemfest-2011</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>University of Hyderabad, Hyderabad</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Chemfest-2010</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>University of Hyderabad, Hyderabad</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Chemfest-2011 (Oral Presentation)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>University of Hyderabad, Hyderabad</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>National</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
470
faculty/garbita-de.php
Normal file
470
faculty/garbita-de.php
Normal file
@@ -0,0 +1,470 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Garbita De</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT II</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:garbitade17@gmail.com" class="fw-bold">garbitade17@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Parasitology & Immunology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest:</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc. (Honours)</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Zoology</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Zoology</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>September, 2018</td>
|
||||||
|
<td>December, 2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>State Aided College Teacher (SACT)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>January, 2020</td>
|
||||||
|
<td>Ongoing</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Certificate for Poster Presentation in National Seminar </td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Garbita De</td>
|
||||||
|
<td>Environmental Impact of Parasites: an overview</td>
|
||||||
|
<td>Bio Genesis (Book)</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>92-100</td>
|
||||||
|
<td>2022-2023</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Impact of COVID-19 on mental health of children, adult & old age</td>
|
||||||
|
<td>New Alipore College</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Environmental Impact of Parasites: an overview</td>
|
||||||
|
<td>Vikrama Simhapuri University, Andhra Pradesh</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Covid-19 pandemic: Impact on sustainable fishery Sector and Global Trade</td>
|
||||||
|
<td>Sarojini Naidu College for Woman</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Prakitik biporjoy, otimari ebong Bangla Sahitya</td>
|
||||||
|
<td>Surendranath College</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Bio-psycho-spiritual disciplining</td>
|
||||||
|
<td>Surendra Nath College</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Faculty Enrichment Program on “Tips, tricks for publishing in International Journal”</td>
|
||||||
|
<td>Bhairab Ganguly College</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>An expedition to Antarctica</td>
|
||||||
|
<td>Bhairab Ganguly College & Sree Chaitanya College</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Post Pandemic Teaching-Learning Method</td>
|
||||||
|
<td>N.R.E.C College, Khurja (U.P)</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Impact of Covid-19 pandemic on Environment and Future Prospects</td>
|
||||||
|
<td>East Calcutta Girls’ College</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Quiz on Environment</td>
|
||||||
|
<td>New Alipore College</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>De-stressing the Plant way</td>
|
||||||
|
<td>Fakir Mohan University, Odisha</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Challenges and Opportunities of Higher Education Institutions during and post Covid-19 pandemic</td>
|
||||||
|
<td>Sri Vasavi College, Erode</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>The misunderstood reptile- the snake</td>
|
||||||
|
<td>Dinabandhu Andrews College</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Health Science and Human Disease</td>
|
||||||
|
<td>East Calcutta Girls’ College</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Covid-19, some ethical and social aspects</td>
|
||||||
|
<td>Presidency University</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Aquatic ecosystems: Prospects and future challenges</td>
|
||||||
|
<td>Maharani Kasiswari College</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>NA</td>
|
||||||
|
<td>Only participated</td>
|
||||||
|
<td>Food and Mood: aspects of healthy life</td>
|
||||||
|
<td>Krishnagar Govt. College</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>Garbita De</td>
|
||||||
|
<td>Impact of virus and vector on human health</td>
|
||||||
|
<td>Modern approaches in Biological Sciences</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>19</td>
|
||||||
|
<td>Garbita De</td>
|
||||||
|
<td>Recent advances in Life Sciences</td>
|
||||||
|
<td>Recent advances in Life Sciences</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>General Zoology</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>ZOOGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>ZOOODSE01P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>ZOOGDSE03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>ZOOGDSE03P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>ZOOC0R101T / ZOOMIN101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>ZOOC0R202T / ZOOMIN202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>ZOOC0R303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>ZOOC0R303P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>ZOOCOR404T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>ZOOCOR404P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>SEC</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Completed 4th year of Art & Craft</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Completed CITA course from West Bengal Youth Computer Training Centre</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Completed Advanced Spoken English course</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
474
faculty/gargi-sarkar.php
Normal file
474
faculty/gargi-sarkar.php
Normal file
@@ -0,0 +1,474 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">GARGI SARKAR</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor in Geography</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, SET</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Fluvial Geomorphology</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Fluvial Geomorphology</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Geography</td>
|
||||||
|
<td>C.U/ Presidency College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Geography</td>
|
||||||
|
<td>C.U</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>SET</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Geography</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Till Now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>P.G. Diploma in Geospatial Science and Technology</td>
|
||||||
|
<td>Maulana Abul Kalam Azad University of Technology, WB (formerly known as West Bengal University of Technology)</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Gargi Sarkar, Dr. Chandan Surabhi Das & Dr. Subhadip Gupta</td>
|
||||||
|
<td>Geomorphological Interpretation of Long-Profile Geometry of a Stream: A Case Study of Chamta Channel, Darjeeling Foothills of West Bengal, India</td>
|
||||||
|
<td>Journal of Indian Geomorphology, Indian Institute of Geomorphologists (IGI)</td>
|
||||||
|
<td>Volume 11, 2023. ISSN 2320-0731</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Dr. Subhadip Gupta & Gargi Sarkar</td>
|
||||||
|
<td>Trend Analysis of Temperature in Ganges Basin: 1901-2020</td>
|
||||||
|
<td>Climate change: Different Perspective</td>
|
||||||
|
<td>ISBN 978-81-956797-5-1</td>
|
||||||
|
<td>pp.81-101</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Gargi Sarkar & Dr. Subhadip Gupta</td>
|
||||||
|
<td>Role of Conviction and IPC Crime against Women with special reference to Rape Cases in recent India</td>
|
||||||
|
<td>Signifying Values: A Realm of Socio-Philosophical Understanding, Dr. Susmita Bhattacharyya, Sarmistha Mitra, Levant Books Kolkata</td>
|
||||||
|
<td>ISBN 978-93-84106-86-7</td>
|
||||||
|
<td>pp.252-267</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>UGC, HRDC, The University of Burdwan</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC, HRDC, Jadavpur University</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC, ASC, University of Hyderabad</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Gargi Sarkar & Dr. Subhadip Gupta</td>
|
||||||
|
<td>Problem of Flood and Bank Erosion of Downstream of River Panchanoi</td>
|
||||||
|
<td>International Workshop on GEOMORPHOLOGICAL HAZARDS</td>
|
||||||
|
<td>India, Tamilnadu State Council for Science & Technology</td>
|
||||||
|
<td>International (Sponsored by DST, MoES, Govt. of India)</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Gargi Sarkar</td>
|
||||||
|
<td>Scenario of Forest Fire with Special Reference to India</td>
|
||||||
|
<td>RESOURCE MANAGEMENT & SUSTAINABLE DEVELOPMENT</td>
|
||||||
|
<td>Dept. of Geography, ECGC, Lake Town & NATMO</td>
|
||||||
|
<td>NATMO & UGC Sponsored National Symposium</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Gargi Sarkar</td>
|
||||||
|
<td>Climate change & Struggle for Existence</td>
|
||||||
|
<td>Climate Change & Economics of Sundarban</td>
|
||||||
|
<td>Bamanpukur Humayun Kabir Mahabidyalaya</td>
|
||||||
|
<td>ICSSR Sponsored National Seminar</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Gargi Sarkar</td>
|
||||||
|
<td>Scenario of Women Empowerment and Rural Development</td>
|
||||||
|
<td>6th Annual Conference of Tollygunge Global Centre for Development Studies</td>
|
||||||
|
<td>Tagore Research Centre</td>
|
||||||
|
<td>Regional</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Gargi Sarkar & Dr. Subhadip Gupta</td>
|
||||||
|
<td>Rural Development: A Case study of vill. Padmapuram, Arakumandal, Vishakhapatnam, A.P.</td>
|
||||||
|
<td>Empowerment of Women: Some Issues, Challenges and Debates (20th-21st Century)</td>
|
||||||
|
<td>Department of History & Economics, K.K.DAS College & Susil Kar College</td>
|
||||||
|
<td>UGC Sponsored State Level Seminar</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Gargi Sarkar</td>
|
||||||
|
<td>Crime and Conviction with Special Reference to Rape Cases in Contemporary India</td>
|
||||||
|
<td>Environment & Sustainability: A Geographical Perspective</td>
|
||||||
|
<td>Department of Geography, Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
<td>UGC Sponsored National Seminar</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Gargi Sarkar</td>
|
||||||
|
<td>Role of Conviction and IPC Crime Against Women with Special Reference to Rape Cases in Recent India</td>
|
||||||
|
<td>Signifying Values: A Realm of Socio-Philosophical Understanding</td>
|
||||||
|
<td>Department of Sociology & Philosophy, Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
<td>UGC Sponsored National Seminar</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Gargi Sarkar</td>
|
||||||
|
<td>Sedimentological Signature of Climate Change: A Reach Scale Analysis of Bank Sediment of Mahananda River System</td>
|
||||||
|
<td>Application of Geospatial Technology in Research and Development</td>
|
||||||
|
<td>CAD Centre (JU) & CEED (New Delhi)</td>
|
||||||
|
<td>National Level</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Gargi Sarkar</td>
|
||||||
|
<td>Watershed Assessment of River Stability and Sediment Supply: A Synchronized Concept of Geomatics and Field Survey in Contemporary Study of Fluvial Geomorphology</td>
|
||||||
|
<td>Society and Sustainability: An Interdisciplinary Approach</td>
|
||||||
|
<td>Department of Geography, Vivekananda College, Kolkata & The Eastern Geographical Society, Bhubaneswar, Orissa</td>
|
||||||
|
<td>International Level</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Gargi Sarkar</td>
|
||||||
|
<td>Significance of Magnitude of R² to Explain the Shape of Long-Profile Along Channel: A Case Study</td>
|
||||||
|
<td>4th Regional Science & Technology Congress-2019</td>
|
||||||
|
<td>Department of Science and Technology and Biotechnology, Govt. of West Bengal</td>
|
||||||
|
<td>State Level</td>
|
||||||
|
<td>18th & 19th Dec, 2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Gargi Sarkar</td>
|
||||||
|
<td>Environmental Change During COVID-19 Lockdown Period with Special Reference to AQI of West Bengal, India</td>
|
||||||
|
<td>Coping with COVID-19: Sustainable Living in the Era of Pandemic</td>
|
||||||
|
<td>IQAC Belda College, WB, India and Bangladesh Open University, Bangladesh</td>
|
||||||
|
<td>International Level</td>
|
||||||
|
<td>15th & 16th June, 2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Gargi Sarkar & Dr. Chandan Surabhi Das</td>
|
||||||
|
<td>Geomorphological Explanation of Longitudinal Profile Through Polynomial Regression Model (PRM): A Case Study of Chamta Channel, Darjeeling District, West Bengal</td>
|
||||||
|
<td>Geomorphology for Human Adaptation to Changing Environment (32nd IGI Conference)</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
<td>National Level</td>
|
||||||
|
<td>21st to 23rd January, 2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Gargi Sarkar & Dr. Chandan Surabhi Das</td>
|
||||||
|
<td>Geomorphological Interpretation of Geometry of Long-Profile: A Case Study of Chamta River</td>
|
||||||
|
<td>Geomorphology and Environmental Sustainability (33rd IGI Conference)</td>
|
||||||
|
<td>Organized by Department of Geography, University of Allahabad, Prayagraj</td>
|
||||||
|
<td>International Geography Online Conference</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Geotectonics & Geomorphology (GEOACOR01T & GEOACOR01P)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Cartographic Techniques (GEOACOR02T & GEOACOR02P)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Human Geography (GEOACOR03T)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Cartograms and Thematic Mapping (GEOACOR04T & 4P)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Climatology (GEOACOR05T & 5P)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Geography of India (GEOACOR06T)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Statistical Methods in Geography (GEOACOR07T & 7P)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Regional Planning and Development (GEOACOR08T)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Economic Geography (GEOACOR09T)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Environmental Geography (GEOACOR10T & 10P)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Fieldwork and Research Methodology (GEOACOR11T & 11P)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Remote Sensing and GIS (GEOACOR12T & 12P)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Evolution of Geographical Thought (GEOACOR13T)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Disaster Management (GEOACOR14T & 14P)</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Soil and Biogeography (GEOADSE01T)</td>
|
||||||
|
<td>Discipline Specific Elective</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Population Geography (GEOADSE03T)</td>
|
||||||
|
<td>Discipline Specific Elective</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>Hydrology and Oceanography (GEOADSE04T)</td>
|
||||||
|
<td>Discipline Specific Elective</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>Resource Geography (GEOADSE06T)</td>
|
||||||
|
<td>Discipline Specific Elective</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
287
faculty/harasit-kumar-mandal.php
Normal file
287
faculty/harasit-kumar-mandal.php
Normal file
@@ -0,0 +1,287 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Harasit Kumar Mandal</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-II</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, B.Ed, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:harasit.chem@sreechaitanyacollege.ac.in" class="fw-bold">harasit.chem@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Physical Chemistry</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Kinetics, Spectroscopy, biomolecules</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>2003</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>C.U</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>C.U</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Education</td>
|
||||||
|
<td>C.U</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>J.U</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Prof. in Chemistry</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>till now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>NET</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Harasit Kumar Mandal</td>
|
||||||
|
<td>Effect of Microheterogeneous Environments on Reaction Rate: Theoretical Explanation through Different Models (Book Chapter)</td>
|
||||||
|
<td>IntechOpen</td>
|
||||||
|
<td>—</td>
|
||||||
|
<td>353</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Harasit Kumar Mandal; Biman Kumar Patel; Suman Saha; Sushanta Saha; Ambikesh Mahapatra</td>
|
||||||
|
<td>Effect of cyclodextrins’ cavity on the kinetics of alkaline hydrolysis of tris(1,10-Phenanthroline)Fe(II) in presence of surfactant</td>
|
||||||
|
<td>Journal of Dispersion Science & Technology</td>
|
||||||
|
<td>44</td>
|
||||||
|
<td>1054-1063</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Harasit Kumar Mandal</td>
|
||||||
|
<td>Physical Chemistry - Kinetic Approach</td>
|
||||||
|
<td>Avenel Press</td>
|
||||||
|
<td>ISBN: 9788194799245</td>
|
||||||
|
<td>1-452</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Refresher Course in Chemistry</td>
|
||||||
|
<td>Sri Guru Tegh Bahadur Khalsa College, Delhi <br> SWAYAM ARPIT ONLINE COURSE <br> 40 hours <br> Exam held on 30.03.2019</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Faculty Induction Programme (/OP)</td>
|
||||||
|
<td>Doctor Harisingh Gour Vishwavidyalaya, Sagar, M.P</td>
|
||||||
|
<td>19.08.2020 - 22.09.2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Refresher Course in Chemistry</td>
|
||||||
|
<td>MALAVIYA MISSION TEACHER TRAINING CENTRE <br> THE UNIVERSITY OF BURDWAN</td>
|
||||||
|
<td>25.07.2024 - 07.08.2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Physical Chemistry (Major & Minor)</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
258
faculty/jadav-baidya.php
Normal file
258
faculty/jadav-baidya.php
Normal file
@@ -0,0 +1,258 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Jadav Baidya</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-I</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, NET</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:jb.philo@scc.ac.in" class="fw-bold">jb.philo@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9093095877</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: NYAYA DARSHAN </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: NYAYA PHILOSOPHY</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.A</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>PHILOSOPHY</td>
|
||||||
|
<td>JU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>PHILOSOPHY</td>
|
||||||
|
<td>JU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>NET</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>PHILOSOPHY</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>ASSISTANT PROFESSOR</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>JADAV BAIDYA</td>
|
||||||
|
<td>NASTIKA DARSHNE MONER SVARUP</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>OP</td>
|
||||||
|
<td>JU HRDC</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>RC</td>
|
||||||
|
<td>JU HRDC</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>JADAV BAIDYA</td>
|
||||||
|
<td>NASTIKA DARSANE MONER SVARUP</td>
|
||||||
|
<td>RANIGANG GIRLS COLLEGE, DEPARTMENT OF SANSKRIT</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
319
faculty/jaydeb-sarkar.php
Normal file
319
faculty/jaydeb-sarkar.php
Normal file
@@ -0,0 +1,319 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Jaydeb Sarkar</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT</p>
|
||||||
|
<p style="margin-top: -10px;">B.A (H), M.A, M.Phil</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:sarkarjaydeb99@gmail.com" class="fw-bold">sarkarjaydeb99@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Sociology and Anthropological issue </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Women's Empowerment</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>BA (Honours)</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>RBU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MA</td>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>RBU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MPhil</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Women's Studies</td>
|
||||||
|
<td>RBU</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SACT-2</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>03.10.2013</td>
|
||||||
|
<td>Till Date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Sem-1 (H)</td>
|
||||||
|
<td>Democratic Awareness through Legal Literacy<br>
|
||||||
|
- Alternate dispute redressal mechanism: Lok Adalat, Shalishi<br>
|
||||||
|
- Offenses against women, juvenile justice, prevention of atrocities on SC/ST
|
||||||
|
</td>
|
||||||
|
<td>PLSHSE101M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Sem-1 (General)</td>
|
||||||
|
<td>Political Theory Concept<br>
|
||||||
|
Unit-1: Nation and State - Social Contract Theory<br>
|
||||||
|
Unit-2: Right, Law, Liberty, Equality, Justice - Theory of Rawls
|
||||||
|
</td>
|
||||||
|
<td>PLSMIN101T / PLCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Sem-3</td>
|
||||||
|
<td>Comparative Government and Politics<br>
|
||||||
|
Unit-1: Evaluation and Scope of Comparative Politics<br>
|
||||||
|
- Classification of Political System
|
||||||
|
</td>
|
||||||
|
<td>PLSMIN303T / PLSCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Sem-5 (H)</td>
|
||||||
|
<td>Women's Power and Politics<br>
|
||||||
|
Module-3: Family in Contemporary India<br>
|
||||||
|
- Understanding Women's Work and Labour
|
||||||
|
</td>
|
||||||
|
<td>PLSADSEO2T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Sem-5 (General)</td>
|
||||||
|
<td>Reading Gandhi<br>
|
||||||
|
Module-2: Gandhian Thought: Theory and Action (Total Syllabus)<br>
|
||||||
|
- Theory of Satyagraha<br>
|
||||||
|
- Satyagraha in Action (Peasant Satyagraha - Kheda)<br>
|
||||||
|
- Idea of Trusteeship<br>
|
||||||
|
- Gandhi on All-Inclusive Development (Sarvodaya, Untouchability, and Dalit Emancipation)<br>
|
||||||
|
Module-3: Gandhi on Women's Development and Women's Movement<br>
|
||||||
|
- Gandhi on Peace and Preservation of Nature
|
||||||
|
</td>
|
||||||
|
<td>PLSGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
374
faculty/lakpha-sherpa.php
Normal file
374
faculty/lakpha-sherpa.php
Normal file
@@ -0,0 +1,374 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Lakpha Sherpa</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">SET, NET, PG</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:lakpha.polsc@sreechaitanyacollege.ac.in" class="fw-bold">lakpha.polsc@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Political Thought and Theory</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: State and Politics, Multiculturalism, Identity and Caste Politics.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Under Graduate</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>North Bengal University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Post Graduate</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>North Bengal University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>NET</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>SET</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>September, 2019</td>
|
||||||
|
<td>Present</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Lakpha Sherpa</td>
|
||||||
|
<td>Gig Economy, Changing Nature of Workforce in India and Government Regulation</td>
|
||||||
|
<td>International Journal of Humanities & Social Science Studies</td>
|
||||||
|
<td>IX</td>
|
||||||
|
<td>74-85</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Lakpha Sherpa</td>
|
||||||
|
<td>Unveiling the role of CAG in Safeguarding Good Governance: A Critical Analysis</td>
|
||||||
|
<td>International Journal of Humanities & Social Science Invention</td>
|
||||||
|
<td>XIII</td>
|
||||||
|
<td>44-48</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>University of Hyderabad</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Faculty Induction Programme</td>
|
||||||
|
<td>University of Burdwan</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Lakpha Sherpa</td>
|
||||||
|
<td>Role of CAG in ensuring Good Governance</td>
|
||||||
|
<td>Democracy in Indian Politics: Negotiating “Azadi @75”</td>
|
||||||
|
<td>Gobardanga Hindu College</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SEM-I (HONOURS)</td>
|
||||||
|
<td>Political Theory: Concepts<br>
|
||||||
|
- Power and Authority – Types and Linkages<br>
|
||||||
|
- Justice - Theory of Rawls
|
||||||
|
</td>
|
||||||
|
<td>PLSDSC101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SEM-I (GENERAL)</td>
|
||||||
|
<td>Political Theory: Concepts<br>
|
||||||
|
- Nation and State – Social Contract Theory<br>
|
||||||
|
- Justice - Theory of Rawls
|
||||||
|
</td>
|
||||||
|
<td>PLSMIN101T / PLSCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>SEM-I (SEC)</td>
|
||||||
|
<td>Outline of the Legal System in India<br>
|
||||||
|
- System of courts/tribunals and their jurisdiction in India<br>
|
||||||
|
- Criminal and civil courts, writ jurisdiction, specialized courts such as juvenile courts, mahila courts, and tribunals<br>
|
||||||
|
- Bharatiya Nyaya Sanhita, 2023: Brief note and distinguishing features<br>
|
||||||
|
- Role of the police and executive in criminal law administration<br>
|
||||||
|
- Laws relating to criminal jurisdiction, FIR, arrest, bail, search, and seizure<br>
|
||||||
|
- Understanding of BNSS 2023 and important offenses under IPC
|
||||||
|
</td>
|
||||||
|
<td>PLSHSE101M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>SEM-III (HONOURS)</td>
|
||||||
|
<td>Political Theory: Approaches<br>
|
||||||
|
- Liberalism, Neo-Liberalism<br>
|
||||||
|
- Marxian Approach - Dialectical Materialism and Historical Materialism
|
||||||
|
</td>
|
||||||
|
<td>PLSDSC303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>SEM-III (GENERAL)</td>
|
||||||
|
<td>Comparative Government and Politics<br>
|
||||||
|
- Legislature in UK, USA, and PRC – Composition and Functions of legislative chambers<br>
|
||||||
|
- Committee system in UK and USA<br>
|
||||||
|
- Judiciary in UK, USA, and PRC (focus on the Procuratorate)
|
||||||
|
</td>
|
||||||
|
<td>PLSMIN303T / PLSCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>SEM-III (SEC)</td>
|
||||||
|
<td>Outline of the Legal System in India<br>
|
||||||
|
- System of courts/tribunals and their jurisdiction in India<br>
|
||||||
|
- Bharatiya Nyaya Sanhita, 2023: Brief note and distinguishing features<br>
|
||||||
|
- Role of the police and executive in criminal law administration<br>
|
||||||
|
- Laws relating to criminal jurisdiction, FIR, arrest, bail, search, and seizure<br>
|
||||||
|
- Understanding of BNSS 2023 and important offenses under IPC
|
||||||
|
</td>
|
||||||
|
<td>PLSHSE303M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>SEM-V (HONOURS)</td>
|
||||||
|
<td>Classical Political Philosophy<br>
|
||||||
|
- Hobbes: Human nature, State of Nature, Social Contract, Leviathan<br>
|
||||||
|
- Locke: Laws of Nature, Natural Rights, Property, Right to dissent<br>
|
||||||
|
Indian Political Thought – I<br>
|
||||||
|
- Ved Vyasa (Shantiparva): Rajadharma
|
||||||
|
</td>
|
||||||
|
<td>PLSACOR11T / PLSACOR12T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>SEM-V (HONOURS - Electives)</td>
|
||||||
|
<td>Reading Gandhi<br>
|
||||||
|
- Gandhi on Modern Civilization and Industrialisation<br>
|
||||||
|
- Critique of development<br>
|
||||||
|
Women, Power, and Politics<br>
|
||||||
|
- Approaches to understanding Patriarchy<br>
|
||||||
|
- Understanding Patriarchy and Feminism
|
||||||
|
</td>
|
||||||
|
<td>PLSADSE01T / PLSADSE02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>SEM-V (SEC)</td>
|
||||||
|
<td>Democratic Awareness with Legal Literacy<br>
|
||||||
|
- Outline of the Legal System in India<br>
|
||||||
|
- Brief understanding of the laws applicable in India<br>
|
||||||
|
- Access to courts and enforcement of rights<br>
|
||||||
|
- Critical understanding of the functioning of the legal system
|
||||||
|
</td>
|
||||||
|
<td>PLSSSEC01M</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
293
faculty/mallika-khatun.php
Normal file
293
faculty/mallika-khatun.php
Normal file
@@ -0,0 +1,293 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Mallika Khatun</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT II</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A,B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:khatunmallika854@gmail.com" class="fw-bold">khatunmallika854@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">8334879385</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Public Administration</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>BA</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MA</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>WBSU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.ED</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td></td>
|
||||||
|
<td>WBSU</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SACT II</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>5/8/2018</td>
|
||||||
|
<td>Till now</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Associate NCC Officer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra, 6 Bengal Battalion, Bongaon</td>
|
||||||
|
<td>12/8/2023</td>
|
||||||
|
<td>Till now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ANO</td>
|
||||||
|
<td>Ministry of Defence</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SEM-I</td>
|
||||||
|
<td>Sovereignty, Rights, Law, Liberty, Equality</td>
|
||||||
|
<td>PLSMIN101T / PLSCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SEM-III (Minor / Core - M3)</td>
|
||||||
|
<td>
|
||||||
|
Legislature in UK, USA, PRC<br>
|
||||||
|
Judiciary in UK, USA, and PRC
|
||||||
|
</td>
|
||||||
|
<td>PLSMIN303T / PLSCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>SEM-V</td>
|
||||||
|
<td>Reading Gandhi - Satyagraha</td>
|
||||||
|
<td>PLSADSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>SEM-V</td>
|
||||||
|
<td>
|
||||||
|
Gandhi on Modern Civilization and Modern Industrialisation based on Large and Heavy Industries and Alternative Modernity; Critique of Development
|
||||||
|
</td>
|
||||||
|
<td>PLSGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
292
faculty/moumita-ghosh.php
Normal file
292
faculty/moumita-ghosh.php
Normal file
@@ -0,0 +1,292 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">MOUMITA GHOSH</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT II</p>
|
||||||
|
<p style="margin-top: -10px;">HS, UG, M.Sc</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:moughsh@gmail.com" class="fw-bold">moughsh@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization:</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest:</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>MP</td>
|
||||||
|
<td>1995</td>
|
||||||
|
<td>BNG, ENG, BIO</td>
|
||||||
|
<td>WBSCE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>HS</td>
|
||||||
|
<td>1997</td>
|
||||||
|
<td>BNG, ENG, BIO, CHEM, GEO, ANTH</td>
|
||||||
|
<td>WBSCHE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>UG</td>
|
||||||
|
<td>2001</td>
|
||||||
|
<td>ZOOLOGY HONOURS</td>
|
||||||
|
<td>CU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2004</td>
|
||||||
|
<td>ZOOLOGY</td>
|
||||||
|
<td>GGU</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>PART TIME TEACHER</td>
|
||||||
|
<td>ASHOKENAGAR MA SARADAMANI VIDYALAYA</td>
|
||||||
|
<td>01.06.2006</td>
|
||||||
|
<td>01.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>PART TIME TEACHER/SACT</td>
|
||||||
|
<td>HABRA SREE CHAITANYA COLLEGE</td>
|
||||||
|
<td>14.11.2005</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ZOOCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>ZOOCOR202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>ZOOCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>ZOOCOR404T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>ZOOCOR505T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>ZOOCOR606T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>CERTIFICATE COURSE OF FISH BREEDING</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
330
faculty/mousumi-satpathi-ghoshal.php
Normal file
330
faculty/mousumi-satpathi-ghoshal.php
Normal file
@@ -0,0 +1,330 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">MOUSUMI SATPATHI(GHOSHAL)</h3>
|
||||||
|
<p class="" style="font-weight: 500;">LIBRARIAN</p>
|
||||||
|
<p style="margin-top: -10px;">B.A(Hons.), M.A, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9732737581</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest:</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.A(Hons.)</td>
|
||||||
|
<td>1987</td>
|
||||||
|
<td>History</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A.</td>
|
||||||
|
<td>1990</td>
|
||||||
|
<td>Modern History</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed.</td>
|
||||||
|
<td>1991</td>
|
||||||
|
<td>Education</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>BLISc</td>
|
||||||
|
<td>1992</td>
|
||||||
|
<td>Library & Information Sc.</td>
|
||||||
|
<td>Vidyasagar University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MLISc</td>
|
||||||
|
<td>1998</td>
|
||||||
|
<td>Library & Information Science</td>
|
||||||
|
<td>J.U</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Librarian</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>04.12.2000</td>
|
||||||
|
<td>Till Now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Mousumi Satpathi (Ghoshal)</td>
|
||||||
|
<td>Role of Internet facilities on Reading Habits of students of Sree Chaitanya College, Habra: A short report</td>
|
||||||
|
<td>College Libraries (WBCLA)</td>
|
||||||
|
<td>Vol.34, No.II</td>
|
||||||
|
<td>P 39-46</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Mousumi Satpathi (Ghoshal)</td>
|
||||||
|
<td>Health Information on Carcinoma: A bibliometric study based on Online Indian Medical Journal, 2010-14</td>
|
||||||
|
<td>CUJIS</td>
|
||||||
|
<td>Vol.XIX, 2017</td>
|
||||||
|
<td>P 110-119</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC Academic Staff College, J.U</td>
|
||||||
|
<td>7th - 27th July, 2004</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02.</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>UGC Academic Staff College, J.U</td>
|
||||||
|
<td>01- 29th March, 2005</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC Academic Staff College, J.U</td>
|
||||||
|
<td>18th Aug. - 07th Sept. 2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC Academic Staff College, J.U</td>
|
||||||
|
<td>17th Aug. - 8th Sept., 2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.</td>
|
||||||
|
<td>Short Term Course</td>
|
||||||
|
<td>UGC & HRDC, J.U.</td>
|
||||||
|
<td>09- 15th Feb., 2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>06.</td>
|
||||||
|
<td>Short Term Course</td>
|
||||||
|
<td>IASLIC</td>
|
||||||
|
<td>May 15 - 24, 2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Mousumi Satpathi (Ghoshal)</td>
|
||||||
|
<td>Overview and Implementation of KOHA</td>
|
||||||
|
<td>Two Days International Conference on KOHA</td>
|
||||||
|
<td>Bengal Library Association in collaboration with Heritage Institute of Technology, Kolkata and RRRLF</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>26-27 Aug, 2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Mousumi Satpathi (Ghoshal)</td>
|
||||||
|
<td>Productive and Powerful communication skills for the Library Professionals to manage the Library: A study</td>
|
||||||
|
<td>National Seminar on Personality Development and Communication skills: Tool for the present era</td>
|
||||||
|
<td>K.D. College of Commerce and General Studies & Career and Counselling Cell and Dept. of English</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>03-04 March, 2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>Mousumi Satpathi (Ghoshal)</td>
|
||||||
|
<td>Role of Information Technology in LIS: An overview</td>
|
||||||
|
<td>National Seminar on Road Map for ensuring the quality of Library & Information Science education and Research</td>
|
||||||
|
<td>Central Library, K.D. College of Commerce & General Studies</td>
|
||||||
|
<td>National Seminar</td>
|
||||||
|
<td>27-28 Jan, 2017</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
386
faculty/mrinmay-mallick.php
Normal file
386
faculty/mrinmay-mallick.php
Normal file
@@ -0,0 +1,386 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Mrinmay Mallick</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, M.Phil, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Samkhya-Yoga</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Darshan & Puran</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.A</td>
|
||||||
|
<td>2003</td>
|
||||||
|
<td>SANSKRIT</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A</td>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>SANSKRIT</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Phil</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>SANSKRIT</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>SANSKRIT</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>07/04/2010</td>
|
||||||
|
<td>Till Now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Mrinmay Mallick</td>
|
||||||
|
<td>सांख्यसम्मतः मोक्षमार्गः श्रेष्ठतमः</td>
|
||||||
|
<td>सङ्कर्षणम्</td>
|
||||||
|
<td>I</td>
|
||||||
|
<td>9-12</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Mrinmay Mallick</td>
|
||||||
|
<td>WIFE OF GOUTAM, A GREAT KANYA</td>
|
||||||
|
<td>PANCHA-KANYA</td>
|
||||||
|
<td>I</td>
|
||||||
|
<td>190-193</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Mrinmay Mallick</td>
|
||||||
|
<td>বেদবিহিত বর্ণপ্রথার বর্তমান অবস্থা</td>
|
||||||
|
<td>वैदिकवाङ्मयस्य विविधायामः</td>
|
||||||
|
<td>I</td>
|
||||||
|
<td>400-404</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Mrinmay Mallick</td>
|
||||||
|
<td>INDUSTRY IN THE RGVEDIC AGE</td>
|
||||||
|
<td>ISRAR</td>
|
||||||
|
<td></td>
|
||||||
|
<td>975-984</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Mrinmay Mallick</td>
|
||||||
|
<td>सांख्यदर्शनस्यैतिहासिकविवेचनम्</td>
|
||||||
|
<td>व्यासश्रीः</td>
|
||||||
|
<td></td>
|
||||||
|
<td>34-47</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>HRDC, CU</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refreshers Courses</td>
|
||||||
|
<td>HRDC, CU</td>
|
||||||
|
<td>2013</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Refreshers Courses</td>
|
||||||
|
<td>HRDC, JU</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Refreshers Courses</td>
|
||||||
|
<td>HRDC, JU</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Mrinmay Mallick</td>
|
||||||
|
<td>Vaidic Sahitye Narider Kshamatayan</td>
|
||||||
|
<td>Empowerment of Women in India: From the perspectives of Attaining Gender Parity and Social Justice</td>
|
||||||
|
<td>Sabang Sajanikanta Mahavidyalaya</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SANDSC101T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SANDSC202T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>SANDSC303T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>SANACOR01T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>SANACOR02T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>SANACOR03T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>SANACOR04T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>SANACOR05T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>SANACOR06T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>SANACOR07T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>SANACOR08T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>SANACOR12T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>SANACOR10T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>SANADSE03T</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
339
faculty/mrs-doli-saha-das.php
Normal file
339
faculty/mrs-doli-saha-das.php
Normal file
@@ -0,0 +1,339 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Mrs. Doli Saha (Das)</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-I</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (Hons), B.Ed, BLISc</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9434159832</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc (Hons.)</td>
|
||||||
|
<td>1989</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>Univ. of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed.</td>
|
||||||
|
<td>1993</td>
|
||||||
|
<td>Education</td>
|
||||||
|
<td>Univ. of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>BLISc</td>
|
||||||
|
<td>1996</td>
|
||||||
|
<td>Library and Information Science</td>
|
||||||
|
<td>J.U</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MLISc</td>
|
||||||
|
<td>1999</td>
|
||||||
|
<td>Library and Information Science</td>
|
||||||
|
<td>J.U</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Certificate Course in French Language</td>
|
||||||
|
<td>1999</td>
|
||||||
|
<td>French Language</td>
|
||||||
|
<td>J.U.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Certificate Course in German Language</td>
|
||||||
|
<td>2000</td>
|
||||||
|
<td>German Language</td>
|
||||||
|
<td>J.U.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01.</td>
|
||||||
|
<td>University Gold Medal</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
<td>1998</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02.</td>
|
||||||
|
<td>Saugata Roy Chaudhury Memorial Award</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
<td>1998</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.</td>
|
||||||
|
<td>Washing Chapter Annual Scholarship</td>
|
||||||
|
<td>Alumni Association, N.C.E. Bengal & Jadavpur University</td>
|
||||||
|
<td>1997</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Doli Saha (Das)</td>
|
||||||
|
<td>Use of electronic resources by the Science and Humanities students: a case study</td>
|
||||||
|
<td>College Libraries (WBCLA)</td>
|
||||||
|
<td>Vol.34, No.IV</td>
|
||||||
|
<td>P.79-91</td>
|
||||||
|
<td>December 2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Doli Saha (Das)</td>
|
||||||
|
<td>Usage of Electronic Resources by the students of Sree Chaitanya College, Habra during lockdown period: a case study</td>
|
||||||
|
<td>College Libraries (WBCLA)</td>
|
||||||
|
<td>Vol.36, No.II</td>
|
||||||
|
<td>P.43-56</td>
|
||||||
|
<td>June 2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>UGC-Academic Staff College, JU</td>
|
||||||
|
<td>Sept. 07 - Oct. 05, 2004</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>,,</td>
|
||||||
|
<td>30th Aug. - 19th Sept. 2005</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>,,</td>
|
||||||
|
<td>17th Aug. - 6th Sept. 2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>,,</td>
|
||||||
|
<td>17th Aug. - 8th Sept. 2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Short Term Course</td>
|
||||||
|
<td>UGC, HRDC, JU</td>
|
||||||
|
<td>Aug. 23 - 29, 2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>Short Term Course</td>
|
||||||
|
<td>IASLIC</td>
|
||||||
|
<td>May 15 - 24, 2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Doli Saha (Das)</td>
|
||||||
|
<td>A selective annotated Bibliography on sports medicine</td>
|
||||||
|
<td>One-day International Seminar on Trends, Issues and Development in Physical Education</td>
|
||||||
|
<td>IQAC & Dept. of Physical Education, Sree Chaitanya Mahavidyalaya, Habra, in collaboration with Post Graduate Govt. Institute for Physical Education</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>20th Sept. 2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Doli Saha (Das)</td>
|
||||||
|
<td>Information Communication Technology (ICT) facilities in Sree Chaitanya College, Habra & The hindrances of its upgradation: A brief Study</td>
|
||||||
|
<td>One-Day International Seminar on ICT Integration in Teaching & Learning: Scopes & Challenges in Higher Educational Institution</td>
|
||||||
|
<td>IQAC, Muralidhar Girls' College</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>17th Aug. 2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Doli Saha (Das)</td>
|
||||||
|
<td>Selection & Evaluation of Digital References Resources towards Collection Development in a Library</td>
|
||||||
|
<td>International Seminar on Rejuvenating Public Library Services through Digital References Sources</td>
|
||||||
|
<td>Dept. of Library & Information Science, J.U.</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>22-23 Feb. 2018</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
521
faculty/mrs-mohua-chatterjee.php
Normal file
521
faculty/mrs-mohua-chatterjee.php
Normal file
@@ -0,0 +1,521 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">MRS. MOHUA CHATTERJEE CHOUDHURY</h3>
|
||||||
|
<p class="" style="font-weight: 500;"></p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, B.Ed, P.Hd</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:mohua.bubul@gmail.com" class="fw-bold">mohua.bubul@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9830119514</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: MODERN INDIA</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: NONE</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.A. HONS</td>
|
||||||
|
<td>1985</td>
|
||||||
|
<td>HISTORY</td>
|
||||||
|
<td>VISVA BHARATI</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A</td>
|
||||||
|
<td>1987</td>
|
||||||
|
<td>HISTORY</td>
|
||||||
|
<td>VISVA BHARATI</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.LIB.SC</td>
|
||||||
|
<td>1989</td>
|
||||||
|
<td>LIBRARY SC</td>
|
||||||
|
<td>RABINDRA BHARATI</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>LECTURER IN HISTORY</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>23.08.1993</td>
|
||||||
|
<td>23.08.1999</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SELECTION GRADE LECTURER</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>23.08.1999</td>
|
||||||
|
<td>23.08.2004</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>ASSOCIATE PROFESSOR</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>23.08.2004</td>
|
||||||
|
<td>PRESENT</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>REFRESHER COURSE- HISTORY</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2001</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>ORIENTATION PROGRAM- HISTORY</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2001</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>REFRESHER COURSE- HISTORY</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2002</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>REFRESHER COURSE- HISTORY</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>2004</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Prof. Aurobindo Samanta</td>
|
||||||
|
<td>Social Impact of Epidemic: Youth for Sustainable Development</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>NSS, IQAC</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Prof. Aurobindo Samanta</td>
|
||||||
|
<td>Mushroom Farming</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>NSS, IQAC</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Nirmal Kumari Mahalanobis</td>
|
||||||
|
<td>‘Kobi and Rani’: Memoirs and Correspondences of Rabindranath Tagore, Translated and Edited by Somdatta Mandal</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>Banipur Mahila Mahavidyalaya, IQAC</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Dr. Nirmal Bandyopadhya</td>
|
||||||
|
<td>Stress Management in This COVID-19 Situation</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>Department of Philosophy, IQAC</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Dr. Nirmal Bandyopadhya</td>
|
||||||
|
<td>Post Pandemic Teaching-Learning Method: A Paradigm Shift</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>Bhairab Ganguly College, Sree Chaitanya College, IQAC</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Dr. Nirmal Bandyopadhya</td>
|
||||||
|
<td>Voices from the Margins</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>Sree Chaitanya College Film Club, IQAC</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Dr. Nirmal Bandyopadhya</td>
|
||||||
|
<td>Society and Environment: An Introspective Approach Towards the Epidemic Crisis</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>Department of History, The Indian Experiences, IQAC</td>
|
||||||
|
<td>State</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Course Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>History of India 1 (From Earliest times to C.300 B.C.E.)</td>
|
||||||
|
<td>DS-I</td>
|
||||||
|
<td>Major</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>History of India 1 (From Earliest times to C.300 B.C.E.)</td>
|
||||||
|
<td>MC-I</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Archives and Museums in India</td>
|
||||||
|
<td>SE-I</td>
|
||||||
|
<td>Major</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>History of India 1 (From C.300 C.E. to 1206 C.E.)</td>
|
||||||
|
<td>MC-II</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>An Introduction to Archaeology</td>
|
||||||
|
<td>SE-II</td>
|
||||||
|
<td>Major</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>History of India 1 (From 1206 C.E. to 1526 C.E.)</td>
|
||||||
|
<td>HISACOR07T</td>
|
||||||
|
<td>Honours</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>History of India From 1206 C.E. to 1707 C.E.</td>
|
||||||
|
<td>HISGCOR03T</td>
|
||||||
|
<td>General</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Archives and Museums in India</td>
|
||||||
|
<td>HISSSEC01M</td>
|
||||||
|
<td>General</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>History of India 1757 - 1857 C.E.</td>
|
||||||
|
<td>HISACOR10T</td>
|
||||||
|
<td>Honours</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>History of India From 1707 C.E. - 1950 C.E.</td>
|
||||||
|
<td>HISGCOR04T</td>
|
||||||
|
<td>General</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Understanding Indian Art</td>
|
||||||
|
<td>HISSSEC02M</td>
|
||||||
|
<td>General</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>History of Modern Europe -I (1789 C.E. – 1919 C.E.)</td>
|
||||||
|
<td>HISACOR11T</td>
|
||||||
|
<td>Honours</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Aspects of the History of Modern South East Asia II</td>
|
||||||
|
<td>HISADSE02T</td>
|
||||||
|
<td>Honours</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Society and Economy of Modern Europe: c.15th – 18th Century</td>
|
||||||
|
<td>HISGDSE01T</td>
|
||||||
|
<td>General</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Understanding Indian Art</td>
|
||||||
|
<td>HISSSEC03M</td>
|
||||||
|
<td>General</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>History of India (India since 1947 C.E.)</td>
|
||||||
|
<td>HISACOR13T</td>
|
||||||
|
<td>Honours</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>History of Modern East Asia -II (1919 C.E. – 1939 C.E.)</td>
|
||||||
|
<td>HISADSE05T</td>
|
||||||
|
<td>Honours</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Some Aspects of European History: c. 1780 – 1939 C.E.</td>
|
||||||
|
<td>HISGDSE04T</td>
|
||||||
|
<td>General</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>19</td>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Understanding Popular Culture</td>
|
||||||
|
<td>HISSSEC04M</td>
|
||||||
|
<td>General</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Extra Curricular Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>REGULAR PERFORMER IN CULTURAL FUNCTIONS OF THE COLLEGE HELD FOR VARIOUS OCCASIONS.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>CONDUCTED SINGING WORKSHOP FOR STUDENTS PARTICIPATING IN COLLEGE FUNCTIONS.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>SUCCESSFULLY COMPLETED 2 YEAR (1986-1987) CERTIFICATE COURSE IN RABINDRA SANGEET, VISVA BHARATI - SANGIT BHAVAN.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>SUCCESSFULLY COMPLETED 2 YEAR (1984-1985) CERTIFICATE COURSE IN HINDUSTANI CLASSICAL VOCAL MUSIC, VISVA BHARATI - SANGIT BHAVAN.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
297
faculty/mrssangita-barua.php
Normal file
297
faculty/mrssangita-barua.php
Normal file
@@ -0,0 +1,297 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Sangita Barua</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">P.G, B.Ed, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9382427412</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Rabindra Sahitya</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Katha Sahitya</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>PG</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Bengali</td>
|
||||||
|
<td>Kalyani University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.ED</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Bengali</td>
|
||||||
|
<td>Kalyani University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>Running</td>
|
||||||
|
<td>Bengali</td>
|
||||||
|
<td>Kalyani University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Teacher</td>
|
||||||
|
<td>Ariadaha Kalachand High School</td>
|
||||||
|
<td>20/09/2018</td>
|
||||||
|
<td>14/07/2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Assistant Teacher</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>17/07/2021</td>
|
||||||
|
<td>Continue</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Category</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>PG</td>
|
||||||
|
<td>BNGPCOR01T, BNGPCOR02T, BNGPCOR09T, BNGPCOR11T, BNGPCOR13T</td>
|
||||||
|
<td>বাংলা</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>UG (NEP SEM-1)</td>
|
||||||
|
<td>DS1 UNIT-3, MA1 UNIT-1</td>
|
||||||
|
<td>বাংলা</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>UG (SEM-5)</td>
|
||||||
|
<td>BNGPCOR12T, DSE-IB</td>
|
||||||
|
<td>বাংলা</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>UG (SEM-6)</td>
|
||||||
|
<td>BNGADSE02T</td>
|
||||||
|
<td>বাংলা</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
375
faculty/munmun-ghosal.php
Normal file
375
faculty/munmun-ghosal.php
Normal file
@@ -0,0 +1,375 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Munmun Ghosal</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT 1</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:munmun.phys@sreechaitanyacollege.ac.in" class="fw-bold">munmun.phys@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Electronics</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Human skin Impedance, Capacitor Measurement (low and high) ,Digital electronics, Rough Set theory, Practical Physics.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>2008</td>
|
||||||
|
<td>PHYSICS</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>ELECTRONICS</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>S.A. Jaipuria College</td>
|
||||||
|
<td>July, 2011</td>
|
||||||
|
<td>May, 2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Class Teacher</td>
|
||||||
|
<td>George School of Competitive Exam</td>
|
||||||
|
<td>October, 2011</td>
|
||||||
|
<td>March, 2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>February, 2012</td>
|
||||||
|
<td>December, 2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>SACT</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>January, 2020</td>
|
||||||
|
<td>Till now</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Practical Class Teacher</td>
|
||||||
|
<td>Netaji Subhas Open University</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
<td>April, 2022</td>
|
||||||
|
<td>March, 2024</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Dr. Arijit Roy, Munmun Ghosal, Abhishek Mallick, Durjoy Roy, Bidish Biswas</td>
|
||||||
|
<td>Construction and remote demonstration of an inexpensive but efficient experimental setup for studying self-inductance and mutual-inductance between two coils</td>
|
||||||
|
<td>Phys. education</td>
|
||||||
|
<td>59</td>
|
||||||
|
<td>025022</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Core P1 – Mathematical Physics Lab</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Core T2 – Mechanics</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Core T4 - Waves and Optics</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Core T7 - Digital Systems and Applications</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Core P7 – Digital Systems and Applications Lab</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Core T10 - Analog Systems and Applications</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Core P10 – Analog Systems and Applications Lab</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Core T12 - Solid State Physics</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Core T14 – Statistical Mechanics</td>
|
||||||
|
<td>Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>DSE T11 - Communication Electronics</td>
|
||||||
|
<td>DSE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>DSE P11 – Communication Electronics Lab</td>
|
||||||
|
<td>DSE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>SEC T4 - Basic Instrumentation Skills</td>
|
||||||
|
<td>SEC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Mathematical Methods I (P) DS-I PHSDSC101T+PHSDSC101P</td>
|
||||||
|
<td>DS-I</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Mechanics (P) Minor1/CORE1</td>
|
||||||
|
<td>Minor/Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Mechanics I (P) (DS-2) PHSDSC202T+PHSDSC202P</td>
|
||||||
|
<td>DS-2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Waves and Optics (P) DS-3 PHSDSC303T+PHSDSC303P</td>
|
||||||
|
<td>DS-3</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>Fluids and Waves (P) - Minor 3/CORE3</td>
|
||||||
|
<td>Minor/Core</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>SEC3</td>
|
||||||
|
<td>SEC</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
390
faculty/nabanita-karanjai.php
Normal file
390
faculty/nabanita-karanjai.php
Normal file
@@ -0,0 +1,390 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Nabanita Karanjai</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-1</p>
|
||||||
|
<p style="margin-top: -10px;">P.G</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: ENGLISH LITERATURE</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: POSTMODERNISM, SCIENCE FICTION, POSTHUMANISM</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>PG</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>ENGLISH</td>
|
||||||
|
<td>JADAVPUR UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>GUEST LECTURER</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE</td>
|
||||||
|
<td>28.08.2018</td>
|
||||||
|
<td>31.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SACT-1</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE</td>
|
||||||
|
<td>01.01.2020</td>
|
||||||
|
<td>TILL DATE</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>NABANITA KARANJAI</td>
|
||||||
|
<td>Climate Change and Posthumanist Praxis in Amitav Ghosh’s The Great Derangement</td>
|
||||||
|
<td>Research and Criticism</td>
|
||||||
|
<td>10</td>
|
||||||
|
<td>135-140</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>NABANITA KARANJAI</td>
|
||||||
|
<td>The Clinic, Human Nature and the Posthuman Body in Mahesh Dattani’s Tara</td>
|
||||||
|
<td>DIOTIMA</td>
|
||||||
|
<td>14</td>
|
||||||
|
<td>47-55</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>NABANITA KARANJAI</td>
|
||||||
|
<td>Motherhood and Technology in Harvest</td>
|
||||||
|
<td>Indian Women in Independence: A Literary Survey</td>
|
||||||
|
<td>BOOK CHAPTER</td>
|
||||||
|
<td>52-55</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>NABANITA KARANJAI</td>
|
||||||
|
<td>Medical Subalterns in Kazuo Ishiguro’s Never Let Me Go</td>
|
||||||
|
<td>Dodging Dystopia: Literary Routes, Global Circuits</td>
|
||||||
|
<td>BOOK CHAPTER</td>
|
||||||
|
<td>61-70</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>NABANITA KARANJAI</td>
|
||||||
|
<td>Hypertext in print: Reading Borges’ Short Stories</td>
|
||||||
|
<td>CONSORTIUM</td>
|
||||||
|
<td>1</td>
|
||||||
|
<td>60-67</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>NABANITA KARANJAI</td>
|
||||||
|
<td>THE SELF AND THE ANIMAL OTHER IN J.M.COETZEE’S DISGRACE: A POSTHUMANIST TAKE</td>
|
||||||
|
<td>POSTHUMANISM AND THE ANIMAL QUESTION</td>
|
||||||
|
<td>CENTER FOR RESEARCH IN POSTHUMANITIES, BANKURA UNIVERSITY</td>
|
||||||
|
<td>INTERNATIONAL</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>NABANITA KARANJAI</td>
|
||||||
|
<td>Posthumanist Strategies of Storytelling: “Metaphoric Connections” in A.K.Ramanujan’s A Flowering Tree</td>
|
||||||
|
<td>Posthumanism and India</td>
|
||||||
|
<td>Indian Posthumanism Network and CCST, Dept of Sociology, WBSU</td>
|
||||||
|
<td>NATIONAL</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>NABANITA KARANJAI</td>
|
||||||
|
<td>Overcoming Enframing in Shakespeare: Reading Dev Virahsawmy’s Toufann</td>
|
||||||
|
<td>Re-thinking the Postcolonial: Texts and Contexts</td>
|
||||||
|
<td>New Literaria</td>
|
||||||
|
<td>INTERNATIONAL</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ENGLCOR01T</td>
|
||||||
|
<td>ENGLCOR01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>ENGLCOR02T</td>
|
||||||
|
<td>ENGLCOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>ENGGCOR01T</td>
|
||||||
|
<td>ENGGCOR01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>ENGGCOR02T</td>
|
||||||
|
<td>ENGGCOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>ENGGCOR03T</td>
|
||||||
|
<td>ENGGCOR03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>ENGGCOR04T</td>
|
||||||
|
<td>ENGGCOR04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>ENGSAEC01M</td>
|
||||||
|
<td>ENGSAEC01M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>ENGGGEC01T</td>
|
||||||
|
<td>ENGGGEC01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>ENGGGEC02T</td>
|
||||||
|
<td>ENGGGEC02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>ENGACOR12T</td>
|
||||||
|
<td>ENGACOR12T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>ENGADSE01T</td>
|
||||||
|
<td>ENGADSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>ENGSSEC01M</td>
|
||||||
|
<td>ENGSSEC01M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>ENGHGEC03T</td>
|
||||||
|
<td>ENGHGEC03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>ENGHGEC04T</td>
|
||||||
|
<td>ENGHGEC04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>DS-2 (SEM-2 ENGLISH HONS, NEP)</td>
|
||||||
|
<td>DS-2</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>ENGHAE101T / ENGGAE101T</td>
|
||||||
|
<td>ENGHAE101T / ENGGAE101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>ENGHAE303T / ENGGAE303T</td>
|
||||||
|
<td>ENGHAE303T / ENGGAE303T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
329
faculty/parikshit-das.php
Normal file
329
faculty/parikshit-das.php
Normal file
@@ -0,0 +1,329 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Parikshit Das</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor, Department of Mathematics.</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (Hons), M.Sc</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:pd.math@sreechaitanyacollege.ac.in" class="fw-bold">pd.math@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Graph Theory</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Computational Graph Theory</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.(H)</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Applied Mathematics</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>22.12.2023</td>
|
||||||
|
<td>Till Now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>P. Das, K. C. Das, S. Mondal & A. Pal</td>
|
||||||
|
<td>First Zagreb spectral radius of unicyclic graphs and trees.</td>
|
||||||
|
<td>Journal of Combinatorial Optimization</td>
|
||||||
|
<td>48</td>
|
||||||
|
<td>1-24</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>P. Das, S. Mondal & A. Pal</td>
|
||||||
|
<td>On Second Zagreb Energy of Graphs.</td>
|
||||||
|
<td>MATCH Communications in Mathematical and in Computer Chemistry</td>
|
||||||
|
<td>92</td>
|
||||||
|
<td>105-131</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>P. Das, S. Mondal, B. Some & A. Pal</td>
|
||||||
|
<td>Extension of Adjacency matrix in QSPR analysis.</td>
|
||||||
|
<td>Chemometrics and Intelligent Laboratory Systems</td>
|
||||||
|
<td>243</td>
|
||||||
|
<td>105024</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>P. Das, S. Mondal & A. Pal</td>
|
||||||
|
<td>Extremal Molecular Descriptors for Oxide and Silicate Networks.</td>
|
||||||
|
<td>Silicon</td>
|
||||||
|
<td>15</td>
|
||||||
|
<td>7565-7577</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>P. Das & A. Pal</td>
|
||||||
|
<td>On Neighbourhood Geometric-Arithmetic Energy of Graphs</td>
|
||||||
|
<td>International Conference on Recent Advances in Mathematics and Data Science (ICRAMDS 2024)</td>
|
||||||
|
<td>Dept. of Mathematics, Bioinformatics and Computer Applications, MANIT, BHOPAL</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>P. Das, S. Mondal & A. Pal</td>
|
||||||
|
<td>Spectral Properties on Neighbourhood Geometric Arithmetic Index of Graphs</td>
|
||||||
|
<td>International Conference on Evolution in Pure and Applied Mathematics (ICEPAM 2024)</td>
|
||||||
|
<td>Dept. of Mathematics, Akal University, Talwandi Sabo</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Category</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>CBCS/NEP</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Major</td>
|
||||||
|
<td>MTMDSC202T</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
<td>MTMMIN202T</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
<td>MTMMIN303T</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>MTMACOR11T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>MTMADSE03T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>MTMADSE04T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>MTMADSE06T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
711
faculty/partha-chakraborti.php
Normal file
711
faculty/partha-chakraborti.php
Normal file
@@ -0,0 +1,711 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">PARTHA CHAKRABORTI</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Associate Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc(Honours), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Advanced Social-Cultural Anthropology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Cultural Anthropology, Folklore, Political Anthropology </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-journal-tab" data-bs-toggle="pill" data-bs-target="#v-pills-journal" type="button" role="tab" aria-controls="v-pills-journal" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/news.svg" alt="" />Journal Publication </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-paper-tab" data-bs-toggle="pill" data-bs-target="#v-pills-paper" type="button" role="tab" aria-controls="v-pills-paper" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/paper.svg" alt="" />Paper Presentation </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-award-tab" data-bs-toggle="pill" data-bs-target="#v-pills-award" type="button" role="tab" aria-controls="v-pills-award" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button> -->
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-hand-tab" data-bs-toggle="pill" data-bs-target="#v-pills-hand" type="button" role="tab" aria-controls="v-pills-hand" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/hand.svg" alt="" />Membership </button> -->
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>SL NO.</th>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>B.Sc. (Hons)</td>
|
||||||
|
<td>1985</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>1987</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>Lecturer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>1996</td>
|
||||||
|
<td>2004</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>Senior Lecturer</td>
|
||||||
|
<td>Do</td>
|
||||||
|
<td>2004</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03</td>
|
||||||
|
<td>Sl. Grade Lecturer</td>
|
||||||
|
<td>Do</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04</td>
|
||||||
|
<td>Associate Professor</td>
|
||||||
|
<td>Do</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Onwards</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>UGC-NET BOTH JRF AND LECTURESHIP</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
<td>1990</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-journal" role="tabpanel" aria-labelledby="v-pills-journal-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">JOURNAL PUBLICATION</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Published On</th>
|
||||||
|
<th>Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Observation of microwave plasmons in one-dimensional conjugated polymer chain. B Mondal, D Majumdar and S K Saha Appl. Phys. Lett. 94 (2009) 183109.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mechanism of Ultrasonic Energy-Assisted Formation of V-, Y-Shaped Nano-Structures in Conjugated Polymers D Majumdar R P Maity, S Basu, and S K Saha J. Nano Sc. & Nanotech. 9 (2009) 6896-6901.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Graphene quantum sheet: A new material for spintronic application. S K Saha, M Baskey, D Majumdar. Adv. Mater. 22 (2010) 5531.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Observation of ferroelectric response in conjugated polymer nanotubes. D Majumdar and S K Saha Appl. Phys. Lett., 96 (2010) 183113.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Poly(3-hexylthiophene) nanotubes with superior electronic and optical properties. D Majumdar and S K Saha Chem. Phys. Lett., 489 (2010) 219.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Synthesis of single crystalline micron-sized rectangular silver bar. B Mondal, D Majumdar and S K Saha, J. Mater. Research. 25 (2010) 383.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Nanotechnology: Its current scope and prospect Dipanwita Majumdar Acad. J Aureole Vol 3(2), (2011) 114-119.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Epitaxial growth of crystalline polyaniline on reduced graphene oxide D Majumdar M Baskey, S K Saha Macromol. Rapid Commun. 32 (2011) 1277.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Graphene and its composites as supercaps. Dipanwita Majumdar Acad. J Aureole 4, (2013) 11-16.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Reduced Graphene Oxide: An Efficient Supercapacitor Material. Dipanwita Majumdar Academic J. Aureole, 5 (2014) 42-46.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Graphene-MnO2 Composite as Electrocatalyst for Oxygen Reduction Reactions. Dipanwita Majumdar Academic J. Aureole, 6&7(1) (2015-16) 31-37.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Charge Transport in Polypyrrole Nanotubes. Dipanwita Majumdar, S.K. Saha J. Nanosci. Nanotechnol. 15 (2015) 9975-9981.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Graphene-Polyaniline nanocomposites as Proficient Energy Storage Material-An Overview. Dipanwita Majumdar Innovative Energy & Research 5 (2016) 2.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Sonochemically Synthesized Beta-Cyclodextrin Functionalized Graphene Oxide and its Efficient Role in Adsorption of Water Soluble Brilliant Green Dye. Dipanwita Majumdar J Environ Anal Toxicol 6 (2016) 5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Hydroxy functionalized Graphene: A Proficient Energy Storage Material, Dipanwita Majumdar and Sujata Pal, J Fundam. Renewable Energy Appl., 6 (2016) 209.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Microwave-assisted synthesis of Mn2O3 porous balls as bifunctional electrocatalyst for oxygen reduction and evolution reaction Dipanwita Majumdar, et al Catal. Sci. Technol., 6(5) (2016) 1417-1429.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Synthesis, characterization and electrochemical study of hydroxy-functionalized graphene/MnO2 nanocomposite D Majumdar, SK Bhattacharya Materials Today: Proceedings 3 (10), 3872-3877.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Sonochemically synthesized hydroxy-functionalized graphene-MnO2 nanocomposite for supercapacitor applications. Dipanwita Majumdar, and Swapan K Bhattacharya J Appl Electrochem 47 (2017) 789-801.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Proficiency of graphene oxide in adsorption and removal of methylene blue from water: An overview. Dipanwita Majumdar J Environ Chem Toxicol 1 (2017) 4-8.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Detoxification of Heavy Metal ion-contaminated Drinking Water by Green Technology - A Short Overview. Dipanwita Majumdar Current Green Chemistry 4 (2017) 38-44.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Functionalized Graphene-MnO2 nanocomposite in Fuel Cell Applications Dipanwita Majumdar Asian Journal of Science and Technology, 8(3),(2017) 4394-4398.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Ultrasound assisted formation of reduced graphene oxide-copper (II) oxide nanocomposite for energy storage applications Dipanwita Majumdar, Nirmal Baugh, and Swapan K Bhattacharya Colloids and Surfaces A: Physicochem. Eng. Aspects 512 (2017) 158-170.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>An Overview on Ruthenium Oxide Composites-Challenging Material for Energy Storage Applications D Majumdar Materials Science Research India 15(1) ,(2018) 30-40.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Anodic Oxidation of Butan-1-ol on Reduced Graphene Oxide-Supported-Pd-Ag-Nanoparticles/ Nanoalloy for Fuel Cell Applications Ankita Mahajan, Senjuti Banik, Dipanwita Majumdar and Swapan Kumar Bhattacharya ACS Omega, 4 (2019) 4658-4670.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Temperature Control Synthesis of Platinum Nanoparticle-Decorated Reduced Graphene Oxide for Electrocatalytic Oxidation of Methanol. Senjuti Banik; Ankita Mahajan; Apurba Ray; Dipanwita Majumdar; Sachindranath Das; Swapan Kumar Bhattacharya Flat Chem (2019) Flat Chem 16 (2019) 100111.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis and characterization of biopolymer based hybrid hydrogel nanocomposite and study of their electrochemical efficacy. Arindam Giri, Rahul Bhowmick, Chandraday Prodhan, Dipanwita Majumdar, Swapan Kumar Bhattacharya M Ali International Journal of Biological Macromolecules.123 (2019) 228-238.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Engineering of Gadolinium-Decorated Graphene Oxide Nanosheets for Multimodal Bioimaging and Drug Delivery. Nitya Chawda, Mainak Basu, Dipanwita Majumdar, Raju Poddar, Santosh Kumar Mahapatra, Indrani Banerjee, ACS OMEGA 4(2019) 12470-12479.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Optimization of physicochemical and dielectric features in the conductive copolymers of aniline and 2-aminophenol US Waware, AMS Hamouda, D Majumdar Polymer Bulletin 76 (11), 5603-5617.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review on V2O5 and Its Carbon-Based nanocomposites as Supercapacitor Electrode Materials. Dipanwita Majumdar, Manas Mandal and Swapan Kumar Bhattacharya ChemElectroChem 2019, 6, 1623. (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review of Recent Progress in Ruthenium Oxides based Composites for Supercapacitor Applications. Dipanwita Majumdar, Thandavarayan Maiyalagan, Zhongqing Jiang ChemElectroChem 6 (2019) 4343 (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Magnetic, pseudocapacitive and H2O2-electrosensing properties of self assembled superparamagnetic Co0.3Zn0.7Fe2O4 with enhanced saturation magnetization Rituparna Mondal, Koyel Sarkar, Subhrajyoti Dey, Dipanwita Majumdar, Swapan Bhattacharya, Pintu Sen, Sanjay Kumar, ACS Omega 47 (2019) 12632-12646.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis, characterization and physicochemical studies of copolymers of aniline and 3 nitroaniline Umesh Somaji Waware, A. M. S. Hamouda, Dipanwita Majumdar Polym. Bull. (2019). pp1-20 DOI: https://doi.org/10.1007/s00289-019-02957-y.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Journey from Supercapacitor to Supercapatteries: Recent advancements in electrochemical energy storage system, D Majumdar et al. Emergent Materials, Springer, ISSN : 2522-574X, https://doi.org/10.1007/s42247-020-00090-5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Review on Current Progress of MnO2-based Ternary Nanocomposites for Supercapacitor Applications, D Majumdar, Chemelectrochem, Wiley, doi: https://doi.org/10.1002/celc.202001371.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent advancements of copper oxide based nanomaterials for supercapacitor applications D Majumdar, S Ghosh Journal of Energy Storage, 101995, https://doi.org/10.1016/j.est.2020.101995.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent progress in copper sulfide based nanomaterials for high energy supercapacitor applications D Majumdar Journal of Electroanalytical Chemistry, https://doi.org/10.1016/j.jelechem.2020.114825.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Majumdar D. Role of MXenes/Polyaniline Nanocomposites in Fabricating Innovative Supercapacitor Technology. Advanced Energy Conversion Materials [Internet]. 2021 Nov. 20 [cited 2022 Jan. 13]; 3(1): 30-53. Available from: https://ojs.wiserpub.com/index.php/AECM/article/view/1148, https://doi.org/10.37256/aecm.3120221148.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Kinsuk Das, Dipanwita Majumdar, Prospects of MXenes/graphene nanocomposites for advanced supercapacitor applications, Journal of Electroanalytical Chemistry, Volume 905, 2022, 115973, ISSN 1572-6657, https://doi.org/10.1016/j.jelechem.2021.115973.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Room Temperature Synthesis of Perovskite Hydroxide, MnSn(OH)6: A Negative Electrode for Supercapacitor Authors Manas Mandal, Krishna Chattopadhyay, Malay Chakraborty, Wonjae Shin, Kamal Kanti Bera, Sujit Chatterjee, Akbar Hossain, Dipanwita Majumdar, Arup Gayen, Changwoon Nah, Swapan Kumar Bhattacharya Publication date 2022/11 Journal Electronic Materials Letters Volume 18 Issue 6 Pages 559-567 Publisher The Korean Institute of Metals and Materials.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Recent Developments of Methanol Electrooxidation Using Nickel-based Nanocatalysts Authors Dipanwita Majumdar, Swapan Kumar Bhattacharya Publication date 2022/10/26 Source ChemistrySelect Volume 7 Issue 40 Pages e202201807.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Graphitic Carbon Nitride (g-C3N4): A Proficient Electrode Material for Flexible Supercapacitors Authors Rudra Sarkar and Munmun Mondal & Dipanwita Majumdar Publication date 2023/12/7 Journal Advanced Materials Science and Technology Volume 5 Issue 2 Pages https://doi.org/10.37155/2717-526X-0502-.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Partha Chakraborti and Dr. Abhijit Das</td>
|
||||||
|
<td>"Syncretism in Eco-Cultural Space of Bonbibi Cult in Sundarban Delta- An Ethnographic Context in Anthropology"</td>
|
||||||
|
<td>International Journal of Humanities Social Science and Management</td>
|
||||||
|
<td>Volume 4, Issue 4</td>
|
||||||
|
<td>935-938</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Partha Chakraborti and Dr. Abhijit Das</td>
|
||||||
|
<td>“Bonbibir Palagan, a folk performance in Sundarban, West Bengal, India- A Cultural Anthropological inquiry in the frame of Social Drama of Victor Turner”</td>
|
||||||
|
<td>IOSR Journal Of Humanities And Social Science (IOSR-JHSS)</td>
|
||||||
|
<td>Volume 29, Issue 7</td>
|
||||||
|
<td>05-11</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Partha Chakraborti</td>
|
||||||
|
<td>Bonbibi: Sylvan Deity of Sundarban</td>
|
||||||
|
<td>Bharatiya Adibasi o Loksanskrity: Bartaman Prekkhit</td>
|
||||||
|
<td>Published by Ramkrishna Mission Lokshikkha Parishad, Narendra pur, West Bengal</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Partha Chakraborti</td>
|
||||||
|
<td>Elements of Social-Cultural Anthropology</td>
|
||||||
|
<td>Loksanskriti o nribidyar abhidhan</td>
|
||||||
|
<td>Aparna Book Distributors, Kolkata</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-paper" role="tabpanel" aria-labelledby="v-pills-paper-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Paper Presentation</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Paper Title</th>
|
||||||
|
<th>Organizer</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2010</td>
|
||||||
|
<td>2010: Oral Presentation: on "Formation Dynamics of V- and Y-shaped Polyaniline nanowires". 4-5th Feb, 2010 (UGC sponsored National Seminar: EMERGING CONCERNS AND ADVANCES IN CHEMISTRY).</td>
|
||||||
|
<td>Lady Brabourne College (Kolkata)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Jan.2011</td>
|
||||||
|
<td>2011: Poster presentation: on "Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction". (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS).</td>
|
||||||
|
<td>Sree Gopal Banerjee College, Bagati, Mogra, Hooghly</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Jul.2013</td>
|
||||||
|
<td>2013: Oral Presentation: ON THE TOPIC "Nanopesticides: A Challenging Domain of Current Research" by D Majumdar 2013. (National Conference).</td>
|
||||||
|
<td>Panchkot Mahavidyalaya, Purulia</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Aug.2015</td>
|
||||||
|
<td>2015: Poster presentation: on "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Graphene Oxide-Copper (II) Oxide composites." on 1-2nd August, 2015. (National Conference/ National Symposium).</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.Dec.2015</td>
|
||||||
|
<td>2015: Poster presentation: NANOS 2015- International conference on the topic "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Reduced-Graphene Oxide-Copper (II) Oxide composites."</td>
|
||||||
|
<td>GITAM University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2016</td>
|
||||||
|
<td>2016: Poster presentation: on the topic "Role of beta-cyclodextrin-functionalized graphene oxide in removal of organic-dye water pollutants." (National Conference).</td>
|
||||||
|
<td>Dept of Chemistry, Burdwan University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.Mar.2016</td>
|
||||||
|
<td>2016: Poster presentation: ICMRA 2016- "Synthesis, Characterization and Electrochemical Study of Hydroxy-Functionalized Graphene/MnO2 nanocomposite" (International Conference).</td>
|
||||||
|
<td>CMR Technical Campus, Hyderabad</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.May.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Synthesis, Characterization and Electrochemical Studies of hydroxy functionalized Graphene-MnO2 Nanocomposite" Dipanwita Majumdar INTERNATIONAL CONFERENCE ON NANOTECHNOLOGY FOR BETTER LIVING (ICNBL-2016) (25/5/2016 -29/5/2016 NIT SRINAGAR AND IIT KANPUR.</td>
|
||||||
|
<td>NIT SRINAGAR, JAMMU AND KASHMIR</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Tuning of Charge Transport Properties in Polypyrrole Nanotubes" Dipanwita Majumdar UGC sponsored ONE DAY National Seminar 2016 RECENT ADVANCES IN LIFE SCIENCE IN THE LIGHT OF CHEMISTRY.</td>
|
||||||
|
<td>Bethune College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation on "Adsorption and Removal of Water Soluble Methylene Blue Dye by Beta-Cyclodextrin Functionalized Graphene Oxide" Dipanwita Majumdar UGC sponsored National Seminar 2016 ENTHRALLING FACETS OF MOLECULAR MANIFESTATION IN CHEMICAL SCIENCES.</td>
|
||||||
|
<td>Bidhannagar College, SALTLAKE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: Role of Sonochemically synthesized Beta-Cyclodextrin Functionalized Graphene Oxide in Adsorption of Water Soluble Brilliant Green Dye: Dipanwita Majumdar UGC sponsored National Seminar 2016 on RECENT TRENDS IN CHEMICAL RESEARCH.</td>
|
||||||
|
<td>Sarojini Naidu College for Women and Hiralal Mazumdar College for Women</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.Nov.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Adsorption and Removal of Soluble Methylene Blue Dye from Water by Sorbefacient Graphene Oxide" Dipanwita Majumdar UGC-Sponsored two day National Seminar on "MODERN TRENDS IN CHEMICAL SCIENCES".</td>
|
||||||
|
<td>Dept of Chemistry, Narasinha Dutt College and Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.Aug.2018</td>
|
||||||
|
<td>2018: Poster presentation: Recent Advancements of RuO2/Functionalized-Graphene Composites for Supercapacitor Applications By Dipanwita Majumdar at Recent Advances in Molecules and Materials: RA2M 2018' (International Conference).</td>
|
||||||
|
<td>School of Applied Science & Humanities, Haldia Institute of Technology, Haldia-721657 and Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Jan.2019</td>
|
||||||
|
<td>2019: Poster presentation: Supercapatteries: A Revolution in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference on Advances in Nanomaterials and Devices for Energy and Environment (ICAN-2019) (International Conference).</td>
|
||||||
|
<td>Advanced Materials and Nano-electronics Research Group of CNT Lab, in ABV-IIITM, Gwalior</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Mar.2019</td>
|
||||||
|
<td>2019: Oral presentation: Supercapacitors to Supercapatteries: Renaissance in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference of Emerging Technologies and Sustainable Development 2019 (ICETSD '19)(International Conference).</td>
|
||||||
|
<td>Government College of Engineering and Leather Technology, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08.Jan.2020</td>
|
||||||
|
<td>2020: Two-Day International Seminar on "Innovation, Expansion, Impacts and Challenges in Chemical and Biological Sciences" to be held on 8-9th January, 2020.</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Feb.2020</td>
|
||||||
|
<td>2020: National Symposium on Renewable Energy for Sustainable Future: Materials & Technology Development at Heritage Institute of Technology on 27/02/2020 on : Recent progress of supercapacitors.</td>
|
||||||
|
<td>Heritage Institute of Technology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Orientation Program</td>
|
||||||
|
<td>ACADEMIC STAFF COLLEGE, UNIVERSITY OF CALCUTTA</td>
|
||||||
|
<td>2003</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Refresher Course, Environmental Studies</td>
|
||||||
|
<td>Do</td>
|
||||||
|
<td>2004</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Refresher Course, Geography and Environmental Studies</td>
|
||||||
|
<td>Do</td>
|
||||||
|
<td>2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Refresher Course, Behavioural Science</td>
|
||||||
|
<td>Do</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Partha Chakraborti</td>
|
||||||
|
<td>Disease Cult in Health seeking behavior in a South Bengal village</td>
|
||||||
|
<td>HUMAN HEALTH: A BIOCULTURAL SYNTHESIS</td>
|
||||||
|
<td>DEPT. OF ANTHROPOLOGY, WBSU</td>
|
||||||
|
<td>NATIONAL</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Partha Chakraborti</td>
|
||||||
|
<td>Anthropological perspective of Chhou Dance</td>
|
||||||
|
<td>Bangla Loksanskrity charcha o Chhou Nritya</td>
|
||||||
|
<td>DEPT. OF BENGALI, SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>STATE</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Subjects (Paper with Code) taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>ANTHROPOLOGY (HONS. And POST –GRADUATE)</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<strong>HONS:</strong> CBCS - CORE 12T, CORE 12P, DSE 02T, DSE 03T, CORE 14T, DSE 05T, DSE 06
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<strong>NEP:</strong> ANTCOR101T, ANTCOR202T
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<strong>PG:</strong> MSc CC02, CC03, CC08, CC011, DSE01, DSE03, DSE04, DSE05
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Extempore oration</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Recitation</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Drama Activist</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Creative Writing</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-award" role="tabpanel" aria-labelledby="v-pills-award-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Award Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Qualified in nationally competitive examination, JAM -2005, conducted by Indian Institute of Technology (IIT), All India Rank-162</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, CSIR-UGC NET - 2006, conducted jointly by Council of Scientific and Industrial Research (CSIR) and University Grants Commission (UGC), Govt. of India, 2006, December for lectureship and research fellowship. Selected for SPM interview under CSIR.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2006, conducted by Indian Institute of Technology (IIT), All India Rank-281</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2007, conducted by Indian Institute of Technology (IIT), All India Rank-12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Poster award for the presentation: on “Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction”. (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS At Sree Gopal Banerjee College, Bagati, Mogra, Hooghly, West Bengal)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>2nd best poster presentation at International Conference on Materials Research and Applications (ICMRA-2016) from 11-13 March 2016 @ CMR TECHNICAL CAMPUS, Kandlakoya (V), Medchal (M), RR Dist, Telangana, India-501401, (Approved by AICTE, New Delhi, Affiliated to JNTU, Hyderabad.)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>3rd Young Women Scientist paper presentation at International Conference on Nanotechnology for Better Living, 2016 jointly organized by IIT Kanpur and NIT Srinagar at Srinagar, J&K, India on 25-29th May, 2016.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Research Excellence Award-2021, InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Young Researcher Award-2021 InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Women Researcher Award in the International Scientist Awards on Engineering, Science and Medicine by VDGOOD Professional Association</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Asia’s Science, Technology and Research Awards 2023 (ASTRA 2023) Outstanding Researcher Award in Materials Science</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-hand" role="tabpanel" aria-labelledby="v-pills-hand-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Membership</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
<th>Membership</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Moderator and Question Paper Setters of UG and PG Level CHEMISTRY COURSES IN various reputed Universities in India.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life Member at Indian Physical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life member of Indian Association for the Cultivation of Science, Jadavpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Reviewer of many reputed International peer-reviewed journals (Springer, Elsevier, Wiley)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>InSc Professional Member, Institute of Scholars, Department of Awards, Muddhinapalya Bengaluru-560091, Karnataka, India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Editorial Board Member of Peer-reviewed International Journal: Materials Science Research India for 2017 and 2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
620
faculty/pranab-kr-das.php
Normal file
620
faculty/pranab-kr-das.php
Normal file
@@ -0,0 +1,620 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Pranab Kr. Das</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Social & Political Geography, Geography of Tourism </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest:</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.A.</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Geography</td>
|
||||||
|
<td>C.U.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A.</td>
|
||||||
|
<td>2008</td>
|
||||||
|
<td>Geography</td>
|
||||||
|
<td>C.U.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Geography</td>
|
||||||
|
<td>C.U.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Till now</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Assistant Teacher in Geography</td>
|
||||||
|
<td>Satin Sen Nagar High School</td>
|
||||||
|
<td>24.09.2009</td>
|
||||||
|
<td>06.04.2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Assistant Teacher in Geography</td>
|
||||||
|
<td>New Age Public School</td>
|
||||||
|
<td>18.09.2008</td>
|
||||||
|
<td>23.09.2009</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title with Page No.</th>
|
||||||
|
<th>Journal/Book Details</th>
|
||||||
|
<th>ISSN/ISBN No.</th>
|
||||||
|
<th>Impact Factor</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>i</td>
|
||||||
|
<td>‘The Himalayan Tsunami’- Cloudburst, Flash Flood & Death Toll: A Geographical Postmortem</td>
|
||||||
|
<td>IOSR Journal of Environmental Science, Toxicology and Food Technology (IOSR-JESTFT), Volume 7, Issue 2, 2013</td>
|
||||||
|
<td>e-ISSN: 2319-2402, p-ISSN: 2319-2399</td>
|
||||||
|
<td>0.716</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ii</td>
|
||||||
|
<td>“North –East, 'The Power House of India': Prospects and Problems”</td>
|
||||||
|
<td>IOSR Journal of Humanities And Social Science (IOSR-JHSS), Volume 18, Issue 3, 2013</td>
|
||||||
|
<td>e-ISSN: 2319-2402, p-ISSN: 2319-2399</td>
|
||||||
|
<td>5.723</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iii</td>
|
||||||
|
<td>Mass Tourism & Environ- Infrastructural Crises of Shimla City: A Case Study</td>
|
||||||
|
<td>International Journal of Science and Research (IJSR), Volume 3, Issue 11, 2014</td>
|
||||||
|
<td>ISSN (Online): 2319-7064</td>
|
||||||
|
<td>1.03</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iv</td>
|
||||||
|
<td>Central Asia: A New Avenue to India’s Future Energy Needs & Geo-Strategic Challenges</td>
|
||||||
|
<td>International Journal of Innovative Research and Development, Volume 3, Issue 11, 2014</td>
|
||||||
|
<td>ISSN 2278–0211</td>
|
||||||
|
<td>0.678</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>v</td>
|
||||||
|
<td>Global Warming, Glacial Lakes and Cloud Burst Events in Garhwal–Kumaon Himalaya: A Hypothetical Analysis, pp-697-708</td>
|
||||||
|
<td>International Journal of Environmental Science, Volume 5, No. 4, 2015</td>
|
||||||
|
<td>ISSN 0976-4402</td>
|
||||||
|
<td>2.30</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>vi</td>
|
||||||
|
<td>Water Crisis & Rain Water Harvesting: A Case Study of Colonial Hill Station, Shimla</td>
|
||||||
|
<td>Published in Edited by Dr. Nilanjana Das, Published by Sampark, 2015</td>
|
||||||
|
<td>ISBN 978-81-7768-109-3</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>vii</td>
|
||||||
|
<td>Mass Tourism, Urbanization & Mushrooming of Road Communication in Uttarakhand: A Geographical Analysis of Environmental Degradation</td>
|
||||||
|
<td>Published in "Urbanization, Environmental Changes and Sustainable Development" by Damodar Group, 2015</td>
|
||||||
|
<td>ISBN 978-81-925800-8-1</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>viii</td>
|
||||||
|
<td>History and Profile of Urban Growth of Kolkata City: A Journey from 1690-2011</td>
|
||||||
|
<td>Journal of Science and Humanities, Vol-1, No-1, September 2016</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ix</td>
|
||||||
|
<td>A Climatological Investigation of Cloud Burst Events in the Uttarakhand Himalaya</td>
|
||||||
|
<td>Climate and Society-A Contemporary Perspective, Edited by Halder and Satpati Publisher University of Calcutta, December 2016</td>
|
||||||
|
<td>ISBN: 978-81-923448-0-5</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>x</td>
|
||||||
|
<td>Ecological And Social Perspectives of Human-Monkey Conflict: A Case Study of Shilli Bagi Village, Shimla Rural Tehsil, Himachal Pradesh</td>
|
||||||
|
<td>The Observer, Published by Students' Geographical Association & Registrar, University of Calcutta, Vol 54, PP-104-108, April 2017</td>
|
||||||
|
<td>ISSN: 2230-9535</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xi</td>
|
||||||
|
<td>Environmental impacts of Hydro Electric Projects of Uttarakhand: An Environmental Analysis</td>
|
||||||
|
<td>Geospatial Technologies For Sustainable Resource Management, Edited by Prasenjit Pal, Arnab Kundu, Avenel Press, 2017</td>
|
||||||
|
<td>ISBN: 978-93-80736-72-3</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xii</td>
|
||||||
|
<td>Nutrition Status of the Hand Rickshaw Pullers of Kolkata: A Case Study</td>
|
||||||
|
<td>Anthropology in Public Health, Edited by Dr. Mithun Das and Dr. Subir Biswas, Concept Publishing Company Pvt. Ltd, 2019</td>
|
||||||
|
<td>ISBN: 978-93-86682-87-1</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xiii</td>
|
||||||
|
<td>Reconstruction of Meghadūta’s Journey from Ramgiri to Dasapura: A Study in Historical Geography</td>
|
||||||
|
<td>Perspectives on Culture and Cognition: An Interdisciplinary Approach, Edited by Dr. Shukla Hazra, Dhanshiri Publishing, 2019</td>
|
||||||
|
<td>ISBN: 978-93-88432-16-0</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xiv</td>
|
||||||
|
<td>Ecotourism and Sustainable Community Development: A Case Study of Sillery Gaon</td>
|
||||||
|
<td>International Journal of Social Science (AESSRA), Vol. 10, Issue. 1, 2021</td>
|
||||||
|
<td>ISSN - 2249-6637, E-ISSN - 2321-5771</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xv</td>
|
||||||
|
<td>The Geo-Politics of North Indian Ocean: India’s Possible Retaliations to Chinese Aggression</td>
|
||||||
|
<td>Academica: An International Multidisciplinary Research Journal, Indianjournal.Com, Vol-11, Issue-3, 2021</td>
|
||||||
|
<td>Online ISSN: 2249-7137</td>
|
||||||
|
<td>0.682</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xvi</td>
|
||||||
|
<td>Perception & Attitude of Tribal People towards Human-Elephant Conflicts in Gorumara National Park: A Study of Purba Kantadighi Kumarpara Village, Jalpaiguri District, West Bengal</td>
|
||||||
|
<td>Accepted in March 2021 and Under Publication in International Research Journal of Environmental Science</td>
|
||||||
|
<td>ISSN: 2319-1414 (Online)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xvii</td>
|
||||||
|
<td>Perception and attitude of tribal people towards human-elephant conflicts in Gorumara National Park: A Study of Purba Kantadighi Kumarpara Village, Jalpaiguri District, WB, India</td>
|
||||||
|
<td>International Research Journal of Environmental Science, Volume 10, Issue (3)</td>
|
||||||
|
<td>E-ISSN: 2319-1414</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xix</td>
|
||||||
|
<td>Perception and attitude of tribal people towards human-elephant conflicts in Gorumara National Park: A Study of Purba Kantadighi Kumarpara Village, Jalpaiguri District, WB, India</td>
|
||||||
|
<td>International Research Journal of Environmental Science, Volume 10, Issue (3)</td>
|
||||||
|
<td>E-ISSN: 2319-1414</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xx</td>
|
||||||
|
<td>Socio-Economic Aspects of Labour Migration: A Case Study of Nepalese Migrants in Kalpa, Himachal Pradesh</td>
|
||||||
|
<td>Accepted and under publication to ILEE (Vol 44, No 1, June 2021)</td>
|
||||||
|
<td>ISSN: 0971-4170</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xxi</td>
|
||||||
|
<td>Eco-Tourism And Women Empowerment: A Study Of Sillery Gaon</td>
|
||||||
|
<td>Indian Journal of Regional Science by RSAi</td>
|
||||||
|
<td>Not received the journal yet. So can't provide the ISSN No and Vol No</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>UGC, HRDC, The University of Burdwan</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC, HRDC</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>UGC, ASC</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>i</td>
|
||||||
|
<td>Mass Tourism, Urbanization & Mushrooming of Road Communication in Uttarakhand: A Geographical Analysis of Environmental Degradation</td>
|
||||||
|
<td>Dimensions of Urbanization, Environmental Changes and Sustainable Development in Developing Countries, 17-18th Feb, 2014</td>
|
||||||
|
<td>Dr. Bhupendra Nath Dutta Smriti Mahavidyalaya, Hatgobindapur, Burdwan</td>
|
||||||
|
<td>UGC Sponsored National Seminar</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ii</td>
|
||||||
|
<td>High Altitude Lakes and Cloud Bursts: A Climatological Investigation in Uttarakhand Himalaya</td>
|
||||||
|
<td>Climate, Society and Sustainability, 25-26th April, 2014</td>
|
||||||
|
<td>Dept. of Geography, University of Calcutta</td>
|
||||||
|
<td>SERB & UGC Sponsored National Symposium</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iii</td>
|
||||||
|
<td>The Himalayan Tsunami - Cloudburst, Flash Flood & Death Toll: A Geographical Postmortem</td>
|
||||||
|
<td>Friday Seminar 17.07.14</td>
|
||||||
|
<td>IQAC Committee of Sree Chaitanya College, Habra</td>
|
||||||
|
<td>Local</td>
|
||||||
|
<td>2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>iv</td>
|
||||||
|
<td>Hydro Power Potentiality and Problem of Power Generation in North East India: A Geographical Analysis</td>
|
||||||
|
<td>Environmental Changes and Challenges: Local, Regional and Global Perspectives, 25th-28th Feb, 2015</td>
|
||||||
|
<td>Department of Geography, Gauhati University</td>
|
||||||
|
<td>36th Indian Geographers’ Meet and International Seminar</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>v</td>
|
||||||
|
<td>Tourism Prospects and Problem in Shimla - A Case Study</td>
|
||||||
|
<td>Interdepartmental Seminar, 19th March 2015</td>
|
||||||
|
<td>Department of Geography and Botany, Sree Chaitanya College, Habra</td>
|
||||||
|
<td>Local</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>vi</td>
|
||||||
|
<td>Drinking Water Crisis in Shimla Agglomeration and Possible Mitigation with Rain Water Harvesting: A Case Study</td>
|
||||||
|
<td>Urbanization and Regional Sustainability, 28-30th January 2016</td>
|
||||||
|
<td>Department of Geography, University of Calcutta</td>
|
||||||
|
<td>International Conference and 47th Annual Seminar of RSAI</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>vii</td>
|
||||||
|
<td>Monkey Menace in Shimla: A Case Study of Human Monkey Conflict</td>
|
||||||
|
<td>Contemporary Research in Geography, 05-06th March 2016</td>
|
||||||
|
<td>Department of Geography, Bhairab Ganguly College</td>
|
||||||
|
<td>UGC Sponsored National Seminar</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>viii</td>
|
||||||
|
<td>The Kinnauri Apples and The Life And Livelihood of Bhahadurs: A Case Study of Nepali Migrants in Kalpa, Himachal Pradesh</td>
|
||||||
|
<td>Development and Environment, 17-18th March, 2016</td>
|
||||||
|
<td>Department of Geography, West Bengal State University</td>
|
||||||
|
<td>National Seminar</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ix</td>
|
||||||
|
<td>Pipe Line Politics, Central Asia to Indian Sub-Continent; India’s New Geostrategic Challenges to Heart Land</td>
|
||||||
|
<td>Integrating Development, Environment Concerns and Social Challenges, 23-24th Sept 2016</td>
|
||||||
|
<td>Dept. of Geography, St. Xavier’s College, Ranchi</td>
|
||||||
|
<td>UGC Sponsored National Seminar</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>x</td>
|
||||||
|
<td>Environmental Impacts of Hydro Electric Projects of Uttarakhand: An Environmental Analysis</td>
|
||||||
|
<td>Application and Emerging Trends of Geospatial Technologies for Sustainable Resource Analysis and Management, 13th Jan 2017</td>
|
||||||
|
<td>Dept. of Geography, Kabi Sukanta Mahavidyalaya and Tarakeswar Degree College</td>
|
||||||
|
<td>UGC Sponsored National Seminar</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xi</td>
|
||||||
|
<td>Life and Livelihood of Rowing Boatmen in Nainital: A Case Study</td>
|
||||||
|
<td>National Seminar on Geography: A Science of Man and Environment, 24-25th Feb, 2017</td>
|
||||||
|
<td>Foundation of Practicing Geographers and ASI, NATMO</td>
|
||||||
|
<td>National Seminar</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xii</td>
|
||||||
|
<td>Nutrition & Health Status of Hand Rickshaw Pullers of Kolkata</td>
|
||||||
|
<td>National Seminar on Role of Anthropology in Public Health, 18-19 March, 2017</td>
|
||||||
|
<td>Dept. of Anthropology, Sree Chaitanya College, Habra and WBSU with ASI, ICMR</td>
|
||||||
|
<td>ASI and ICMR Sponsored National Seminar</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xiii</td>
|
||||||
|
<td>Socio-Economic Dimension of Rural Urban Migration: A Case Study of Hand Rickshaw Pullers of Kolkata</td>
|
||||||
|
<td>International Seminar on Indigenous People, Human Security and Sustainable Development: Emerging Challenges in the Present Global Context, 19-21 Jan, 2018</td>
|
||||||
|
<td>Commission of Human Rights, International Union of Anthropological & Ethnological Science, Dept. of Anthropology WBSU, ICMR, ICHR, ASI</td>
|
||||||
|
<td>International Seminar</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xiv</td>
|
||||||
|
<td>Dimension of Human-Elephant Conflicts: A Case Study of Purba Kantadighi Kumarpara Village, Jalpaiguri, W.B</td>
|
||||||
|
<td>International Seminar on Natural Disaster and Its Management, 9th Feb, 2018</td>
|
||||||
|
<td>Dept. of Geography and Physics and IQAC, Sabang Sajanikanta Mahavidyalaya</td>
|
||||||
|
<td>International Seminar</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xv</td>
|
||||||
|
<td>Socio-Economic Aspects of Labour Migration: A Case Study of Nepali Migrants in Kalpa, Himachal Pradesh</td>
|
||||||
|
<td>4th International Seminar on “Population, Urbanization and Environment: Contemporary Issues and Challenges”, 21-22 March, 2018</td>
|
||||||
|
<td>Dept. of Geography, Gour Banga University</td>
|
||||||
|
<td>International Seminar</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>xvi</td>
|
||||||
|
<td>The Geopolitical Tussles Over Sri Lanka: India-China Rivalry on Indian Ocean Region</td>
|
||||||
|
<td>National Conference on Contemporary Research Perspectives in Geography, 17-18 May, 2018</td>
|
||||||
|
<td>International Benevolent Research Foundation and Confederation of Indian Universities, New Delhi</td>
|
||||||
|
<td>National Seminar</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Geotectonics & Geomorphology</td>
|
||||||
|
<td>GEOACOR01T & GEOACOR01P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Cartograms and Thematic Mapping</td>
|
||||||
|
<td>GEOACOR04T & 4P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Cartographic Techniques</td>
|
||||||
|
<td>GEOACOR02T & GEOACOR02P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Climatology</td>
|
||||||
|
<td>GEOACOR05T & 5P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Human Geography</td>
|
||||||
|
<td>GEOACOR03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Geography of India</td>
|
||||||
|
<td>GEOACOR06T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Statistical Methods in Geography</td>
|
||||||
|
<td>GEOACOR07T & 7P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Evolution of Geographical Thought</td>
|
||||||
|
<td>GEOACOR13T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>Regional Planning and Development</td>
|
||||||
|
<td>GEOACOR08T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>Disaster Management</td>
|
||||||
|
<td>GEOACOR14T & 14P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Economic Geography</td>
|
||||||
|
<td>GEOACOR09T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Soil and Biogeography</td>
|
||||||
|
<td>GEOADSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Environmental Geography</td>
|
||||||
|
<td>GEOACOR10T & 10P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Population Geography</td>
|
||||||
|
<td>GEOADSE03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Fieldwork and Research Methodology</td>
|
||||||
|
<td>GEOACOR11T & 11P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>Hydrology and Oceanography</td>
|
||||||
|
<td>GEOADSE04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>Remote Sensing and GIS</td>
|
||||||
|
<td>GEOACOR12T & 12P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>18</td>
|
||||||
|
<td>Resource Geography</td>
|
||||||
|
<td>GEOADSE06T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
309
faculty/rakhi-mitra.php
Normal file
309
faculty/rakhi-mitra.php
Normal file
@@ -0,0 +1,309 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">RAKHI MITRA</h3>
|
||||||
|
<p class="" style="font-weight: 500;">ASSISTANT PROFESSOR</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, M.Phil</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:rmitra0313@gmail.com" class="fw-bold">rmitra0313@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: PUBLIC ADMINISTRATION</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: WOMENS’ STUDIES,INTERNATIONAL RELATIONS</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>BA</td>
|
||||||
|
<td>2001</td>
|
||||||
|
<td>POLITICAL SCIENCE</td>
|
||||||
|
<td>CU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MA</td>
|
||||||
|
<td>2004</td>
|
||||||
|
<td>POLITICAL SCIENCE</td>
|
||||||
|
<td>RBU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>MPHIL</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>WOMEN’S STUDIES</td>
|
||||||
|
<td>RBU</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ASSISTANT PROFESSOR</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>TILL DATE</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal/BOOK</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>RAKHI MITRA</td>
|
||||||
|
<td>THE QUESTION OF WOMEN IN BENGAL RENAISSANCE: CONTRIBUTION OF DWARKANATH GANGULY</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>294-304</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>RAKHI MITRA</td>
|
||||||
|
<td>SARALA DEVI CHAUDHURANI</td>
|
||||||
|
<td>MAN AND NATION</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>FACULTY INDUCTION PROGRAMME</td>
|
||||||
|
<td>NBU</td>
|
||||||
|
<td>MARCH 2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>REFRESHER COURSE</td>
|
||||||
|
<td>NBU</td>
|
||||||
|
<td>SEPTEMBER 2021</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>RAKHI MITRA</td>
|
||||||
|
<td>THE SUNDARBANS: A MANGROVE MICROCOSM SHAPING EAST ASIAN GEOPOLITICS</td>
|
||||||
|
<td>BENGAL BASIN AND BAY OF BENGAL INTERACTION SPHERE: PAN INDIAN AND PAN ASIAN CONTACTS</td>
|
||||||
|
<td>KOLKATA SOCIETY FOR ASIAN STUDIES</td>
|
||||||
|
<td>INTERNATIONAL</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SEM-I</td>
|
||||||
|
<td>POLITICAL THEORY: CONCEPTS</td>
|
||||||
|
<td>PLSDSC101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SEM-II</td>
|
||||||
|
<td>INDIAN CONSTITUTION AND GOVERNMENT</td>
|
||||||
|
<td>PLSDSC202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>SEM-III</td>
|
||||||
|
<td>POLITICAL THEORY: APPROACHES</td>
|
||||||
|
<td>PLSDSC303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>SEM-IV</td>
|
||||||
|
<td>WESTERN POLITICAL THOUGHT</td>
|
||||||
|
<td>PLSACOR11T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>SEM-V</td>
|
||||||
|
<td>INDIAN POLITICAL THOUGHT</td>
|
||||||
|
<td>PLSACOR12T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>SEM-VI</td>
|
||||||
|
<td>READING GANDHI</td>
|
||||||
|
<td>PLSADSE01T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>STUDENT COUNSELING</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
307
faculty/riddhi-chatterjee.php
Normal file
307
faculty/riddhi-chatterjee.php
Normal file
@@ -0,0 +1,307 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Riddhi Chatterjee</h3>
|
||||||
|
<p class="" style="font-weight: 500;"></p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, M.Phil</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:riddhichatterjee.econ@sreechaitanyacollege.ac.in" class="fw-bold">riddhichatterjee.econ@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: International Economics, Environment and Resource Economics.</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: International Economics, Environment and Resource Economics.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>M.Phil</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>Economics</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Economics</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Economics</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Present</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>PTT</td>
|
||||||
|
<td>S.A Jaipuria College</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Guest Faculty</td>
|
||||||
|
<td>Rabindra Bharati University</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Guest Faculty</td>
|
||||||
|
<td>Centre for Urban Economic Studies (University of Calcutta)</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal/Book</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Riddhi Chatterjee</td>
|
||||||
|
<td>Derivation of Growth of Import Demand: A Time Series Analysis of Less Developed Countries</td>
|
||||||
|
<td>Indian Economic Journal</td>
|
||||||
|
<td>ONLINE FIRST</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Ranajoy Bhattacharyya, Riddhi Chatterjee</td>
|
||||||
|
<td>Macroeconomic Vulnerability of Less-Developed Countries</td>
|
||||||
|
<td>Contemporary Issues in International Trade, Emerald Publishing Limited, Leeds</td>
|
||||||
|
<td>Book chapter</td>
|
||||||
|
<td>49-61</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Ranajoy Bhattacharyya, Riddhi Chatterjee, Gouranga G. Das</td>
|
||||||
|
<td>Do Developing Countries Still Suffer from the Foreign Exchange Constraint? An Empirical Study for 1990–2014</td>
|
||||||
|
<td>Studies in International Economics and Finance, Springer</td>
|
||||||
|
<td>Book Chapter</td>
|
||||||
|
<td>439-487</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Riddhi Chatterjee</td>
|
||||||
|
<td>Economic liberalization and demand for imports in India: 1970 to 2016</td>
|
||||||
|
<td>Indian Journal of Economics and Development</td>
|
||||||
|
<td>Vol 7 (12)</td>
|
||||||
|
<td>1-9</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>Mizoram University</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refreshers Course</td>
|
||||||
|
<td>Burdwan University</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Topic Taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
637
faculty/rupashree-dasgupta-roy-chowdhury.php
Normal file
637
faculty/rupashree-dasgupta-roy-chowdhury.php
Normal file
@@ -0,0 +1,637 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Rupashree Dasgupta (Roy Chowdhury)</h3>
|
||||||
|
<!-- <p class="" style="font-weight: 500;">Associate Professor</p> -->
|
||||||
|
<p style="margin-top: -10px;">B.Sc(Honours), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:rupashree.anthro@scc.ac.in" class="fw-bold">rupashree.anthro@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9903036024</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Anthropology ( Spl Human Genetics) </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: </h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-journal-tab" data-bs-toggle="pill" data-bs-target="#v-pills-journal" type="button" role="tab" aria-controls="v-pills-journal" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/news.svg" alt="" />Journal Publication </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-paper-tab" data-bs-toggle="pill" data-bs-target="#v-pills-paper" type="button" role="tab" aria-controls="v-pills-paper" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/paper.svg" alt="" />Paper Presentation </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-award-tab" data-bs-toggle="pill" data-bs-target="#v-pills-award" type="button" role="tab" aria-controls="v-pills-award" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button> -->
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-hand-tab" data-bs-toggle="pill" data-bs-target="#v-pills-hand" type="button" role="tab" aria-controls="v-pills-hand" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/hand.svg" alt="" />Membership </button> -->
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>1991</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>C.U</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>1993</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>C.U</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>SACT - II</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>17.03.2009</td>
|
||||||
|
<td>Till now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-journal" role="tabpanel" aria-labelledby="v-pills-journal-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">JOURNAL PUBLICATION</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Published On</th>
|
||||||
|
<th>Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Observation of microwave plasmons in one-dimensional conjugated polymer chain. B Mondal, D Majumdar and S K Saha Appl. Phys. Lett. 94 (2009) 183109.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mechanism of Ultrasonic Energy-Assisted Formation of V-, Y-Shaped Nano-Structures in Conjugated Polymers D Majumdar R P Maity, S Basu, and S K Saha J. Nano Sc. & Nanotech. 9 (2009) 6896-6901.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Graphene quantum sheet: A new material for spintronic application. S K Saha, M Baskey, D Majumdar. Adv. Mater. 22 (2010) 5531.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Observation of ferroelectric response in conjugated polymer nanotubes. D Majumdar and S K Saha Appl. Phys. Lett., 96 (2010) 183113.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Poly(3-hexylthiophene) nanotubes with superior electronic and optical properties. D Majumdar and S K Saha Chem. Phys. Lett., 489 (2010) 219.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Synthesis of single crystalline micron-sized rectangular silver bar. B Mondal, D Majumdar and S K Saha, J. Mater. Research. 25 (2010) 383.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Nanotechnology: Its current scope and prospect Dipanwita Majumdar Acad. J Aureole Vol 3(2), (2011) 114-119.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Epitaxial growth of crystalline polyaniline on reduced graphene oxide D Majumdar M Baskey, S K Saha Macromol. Rapid Commun. 32 (2011) 1277.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Graphene and its composites as supercaps. Dipanwita Majumdar Acad. J Aureole 4, (2013) 11-16.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Reduced Graphene Oxide: An Efficient Supercapacitor Material. Dipanwita Majumdar Academic J. Aureole, 5 (2014) 42-46.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Graphene-MnO2 Composite as Electrocatalyst for Oxygen Reduction Reactions. Dipanwita Majumdar Academic J. Aureole, 6&7(1) (2015-16) 31-37.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Charge Transport in Polypyrrole Nanotubes. Dipanwita Majumdar, S.K. Saha J. Nanosci. Nanotechnol. 15 (2015) 9975-9981.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Graphene-Polyaniline nanocomposites as Proficient Energy Storage Material-An Overview. Dipanwita Majumdar Innovative Energy & Research 5 (2016) 2.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Sonochemically Synthesized Beta-Cyclodextrin Functionalized Graphene Oxide and its Efficient Role in Adsorption of Water Soluble Brilliant Green Dye. Dipanwita Majumdar J Environ Anal Toxicol 6 (2016) 5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Hydroxy functionalized Graphene: A Proficient Energy Storage Material, Dipanwita Majumdar and Sujata Pal, J Fundam. Renewable Energy Appl., 6 (2016) 209.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Microwave-assisted synthesis of Mn2O3 porous balls as bifunctional electrocatalyst for oxygen reduction and evolution reaction Dipanwita Majumdar, et al Catal. Sci. Technol., 6(5) (2016) 1417-1429.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Synthesis, characterization and electrochemical study of hydroxy-functionalized graphene/MnO2 nanocomposite D Majumdar, SK Bhattacharya Materials Today: Proceedings 3 (10), 3872-3877.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Sonochemically synthesized hydroxy-functionalized graphene-MnO2 nanocomposite for supercapacitor applications. Dipanwita Majumdar, and Swapan K Bhattacharya J Appl Electrochem 47 (2017) 789-801.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Proficiency of graphene oxide in adsorption and removal of methylene blue from water: An overview. Dipanwita Majumdar J Environ Chem Toxicol 1 (2017) 4-8.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Detoxification of Heavy Metal ion-contaminated Drinking Water by Green Technology - A Short Overview. Dipanwita Majumdar Current Green Chemistry 4 (2017) 38-44.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Functionalized Graphene-MnO2 nanocomposite in Fuel Cell Applications Dipanwita Majumdar Asian Journal of Science and Technology, 8(3),(2017) 4394-4398.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Ultrasound assisted formation of reduced graphene oxide-copper (II) oxide nanocomposite for energy storage applications Dipanwita Majumdar, Nirmal Baugh, and Swapan K Bhattacharya Colloids and Surfaces A: Physicochem. Eng. Aspects 512 (2017) 158-170.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>An Overview on Ruthenium Oxide Composites-Challenging Material for Energy Storage Applications D Majumdar Materials Science Research India 15(1) ,(2018) 30-40.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Anodic Oxidation of Butan-1-ol on Reduced Graphene Oxide-Supported-Pd-Ag-Nanoparticles/ Nanoalloy for Fuel Cell Applications Ankita Mahajan, Senjuti Banik, Dipanwita Majumdar and Swapan Kumar Bhattacharya ACS Omega, 4 (2019) 4658-4670.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Temperature Control Synthesis of Platinum Nanoparticle-Decorated Reduced Graphene Oxide for Electrocatalytic Oxidation of Methanol. Senjuti Banik; Ankita Mahajan; Apurba Ray; Dipanwita Majumdar; Sachindranath Das; Swapan Kumar Bhattacharya Flat Chem (2019) Flat Chem 16 (2019) 100111.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis and characterization of biopolymer based hybrid hydrogel nanocomposite and study of their electrochemical efficacy. Arindam Giri, Rahul Bhowmick, Chandraday Prodhan, Dipanwita Majumdar, Swapan Kumar Bhattacharya M Ali International Journal of Biological Macromolecules.123 (2019) 228-238.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Engineering of Gadolinium-Decorated Graphene Oxide Nanosheets for Multimodal Bioimaging and Drug Delivery. Nitya Chawda, Mainak Basu, Dipanwita Majumdar, Raju Poddar, Santosh Kumar Mahapatra, Indrani Banerjee, ACS OMEGA 4(2019) 12470-12479.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Optimization of physicochemical and dielectric features in the conductive copolymers of aniline and 2-aminophenol US Waware, AMS Hamouda, D Majumdar Polymer Bulletin 76 (11), 5603-5617.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review on V2O5 and Its Carbon-Based nanocomposites as Supercapacitor Electrode Materials. Dipanwita Majumdar, Manas Mandal and Swapan Kumar Bhattacharya ChemElectroChem 2019, 6, 1623. (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review of Recent Progress in Ruthenium Oxides based Composites for Supercapacitor Applications. Dipanwita Majumdar, Thandavarayan Maiyalagan, Zhongqing Jiang ChemElectroChem 6 (2019) 4343 (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Magnetic, pseudocapacitive and H2O2-electrosensing properties of self assembled superparamagnetic Co0.3Zn0.7Fe2O4 with enhanced saturation magnetization Rituparna Mondal, Koyel Sarkar, Subhrajyoti Dey, Dipanwita Majumdar, Swapan Bhattacharya, Pintu Sen, Sanjay Kumar, ACS Omega 47 (2019) 12632-12646.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis, characterization and physicochemical studies of copolymers of aniline and 3 nitroaniline Umesh Somaji Waware, A. M. S. Hamouda, Dipanwita Majumdar Polym. Bull. (2019). pp1-20 DOI: https://doi.org/10.1007/s00289-019-02957-y.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Journey from Supercapacitor to Supercapatteries: Recent advancements in electrochemical energy storage system, D Majumdar et al. Emergent Materials, Springer, ISSN : 2522-574X, https://doi.org/10.1007/s42247-020-00090-5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Review on Current Progress of MnO2-based Ternary Nanocomposites for Supercapacitor Applications, D Majumdar, Chemelectrochem, Wiley, doi: https://doi.org/10.1002/celc.202001371.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent advancements of copper oxide based nanomaterials for supercapacitor applications D Majumdar, S Ghosh Journal of Energy Storage, 101995, https://doi.org/10.1016/j.est.2020.101995.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent progress in copper sulfide based nanomaterials for high energy supercapacitor applications D Majumdar Journal of Electroanalytical Chemistry, https://doi.org/10.1016/j.jelechem.2020.114825.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Majumdar D. Role of MXenes/Polyaniline Nanocomposites in Fabricating Innovative Supercapacitor Technology. Advanced Energy Conversion Materials [Internet]. 2021 Nov. 20 [cited 2022 Jan. 13]; 3(1): 30-53. Available from: https://ojs.wiserpub.com/index.php/AECM/article/view/1148, https://doi.org/10.37256/aecm.3120221148.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Kinsuk Das, Dipanwita Majumdar, Prospects of MXenes/graphene nanocomposites for advanced supercapacitor applications, Journal of Electroanalytical Chemistry, Volume 905, 2022, 115973, ISSN 1572-6657, https://doi.org/10.1016/j.jelechem.2021.115973.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Room Temperature Synthesis of Perovskite Hydroxide, MnSn(OH)6: A Negative Electrode for Supercapacitor Authors Manas Mandal, Krishna Chattopadhyay, Malay Chakraborty, Wonjae Shin, Kamal Kanti Bera, Sujit Chatterjee, Akbar Hossain, Dipanwita Majumdar, Arup Gayen, Changwoon Nah, Swapan Kumar Bhattacharya Publication date 2022/11 Journal Electronic Materials Letters Volume 18 Issue 6 Pages 559-567 Publisher The Korean Institute of Metals and Materials.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Recent Developments of Methanol Electrooxidation Using Nickel-based Nanocatalysts Authors Dipanwita Majumdar, Swapan Kumar Bhattacharya Publication date 2022/10/26 Source ChemistrySelect Volume 7 Issue 40 Pages e202201807.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Graphitic Carbon Nitride (g-C3N4): A Proficient Electrode Material for Flexible Supercapacitors Authors Rudra Sarkar and Munmun Mondal & Dipanwita Majumdar Publication date 2023/12/7 Journal Advanced Materials Science and Technology Volume 5 Issue 2 Pages https://doi.org/10.37155/2717-526X-0502-.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>"</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-paper" role="tabpanel" aria-labelledby="v-pills-paper-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Paper Presentation</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Paper Title</th>
|
||||||
|
<th>Organizer</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2010</td>
|
||||||
|
<td>2010: Oral Presentation: on "Formation Dynamics of V- and Y-shaped Polyaniline nanowires". 4-5th Feb, 2010 (UGC sponsored National Seminar: EMERGING CONCERNS AND ADVANCES IN CHEMISTRY).</td>
|
||||||
|
<td>Lady Brabourne College (Kolkata)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Jan.2011</td>
|
||||||
|
<td>2011: Poster presentation: on "Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction". (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS).</td>
|
||||||
|
<td>Sree Gopal Banerjee College, Bagati, Mogra, Hooghly</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Jul.2013</td>
|
||||||
|
<td>2013: Oral Presentation: ON THE TOPIC "Nanopesticides: A Challenging Domain of Current Research" by D Majumdar 2013. (National Conference).</td>
|
||||||
|
<td>Panchkot Mahavidyalaya, Purulia</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Aug.2015</td>
|
||||||
|
<td>2015: Poster presentation: on "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Graphene Oxide-Copper (II) Oxide composites." on 1-2nd August, 2015. (National Conference/ National Symposium).</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.Dec.2015</td>
|
||||||
|
<td>2015: Poster presentation: NANOS 2015- International conference on the topic "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Reduced-Graphene Oxide-Copper (II) Oxide composites."</td>
|
||||||
|
<td>GITAM University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2016</td>
|
||||||
|
<td>2016: Poster presentation: on the topic "Role of beta-cyclodextrin-functionalized graphene oxide in removal of organic-dye water pollutants." (National Conference).</td>
|
||||||
|
<td>Dept of Chemistry, Burdwan University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.Mar.2016</td>
|
||||||
|
<td>2016: Poster presentation: ICMRA 2016- "Synthesis, Characterization and Electrochemical Study of Hydroxy-Functionalized Graphene/MnO2 nanocomposite" (International Conference).</td>
|
||||||
|
<td>CMR Technical Campus, Hyderabad</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.May.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Synthesis, Characterization and Electrochemical Studies of hydroxy functionalized Graphene-MnO2 Nanocomposite" Dipanwita Majumdar INTERNATIONAL CONFERENCE ON NANOTECHNOLOGY FOR BETTER LIVING (ICNBL-2016) (25/5/2016 -29/5/2016 NIT SRINAGAR AND IIT KANPUR.</td>
|
||||||
|
<td>NIT SRINAGAR, JAMMU AND KASHMIR</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Tuning of Charge Transport Properties in Polypyrrole Nanotubes" Dipanwita Majumdar UGC sponsored ONE DAY National Seminar 2016 RECENT ADVANCES IN LIFE SCIENCE IN THE LIGHT OF CHEMISTRY.</td>
|
||||||
|
<td>Bethune College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation on "Adsorption and Removal of Water Soluble Methylene Blue Dye by Beta-Cyclodextrin Functionalized Graphene Oxide" Dipanwita Majumdar UGC sponsored National Seminar 2016 ENTHRALLING FACETS OF MOLECULAR MANIFESTATION IN CHEMICAL SCIENCES.</td>
|
||||||
|
<td>Bidhannagar College, SALTLAKE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: Role of Sonochemically synthesized Beta-Cyclodextrin Functionalized Graphene Oxide in Adsorption of Water Soluble Brilliant Green Dye: Dipanwita Majumdar UGC sponsored National Seminar 2016 on RECENT TRENDS IN CHEMICAL RESEARCH.</td>
|
||||||
|
<td>Sarojini Naidu College for Women and Hiralal Mazumdar College for Women</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.Nov.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Adsorption and Removal of Soluble Methylene Blue Dye from Water by Sorbefacient Graphene Oxide" Dipanwita Majumdar UGC-Sponsored two day National Seminar on "MODERN TRENDS IN CHEMICAL SCIENCES".</td>
|
||||||
|
<td>Dept of Chemistry, Narasinha Dutt College and Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.Aug.2018</td>
|
||||||
|
<td>2018: Poster presentation: Recent Advancements of RuO2/Functionalized-Graphene Composites for Supercapacitor Applications By Dipanwita Majumdar at Recent Advances in Molecules and Materials: RA2M 2018' (International Conference).</td>
|
||||||
|
<td>School of Applied Science & Humanities, Haldia Institute of Technology, Haldia-721657 and Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Jan.2019</td>
|
||||||
|
<td>2019: Poster presentation: Supercapatteries: A Revolution in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference on Advances in Nanomaterials and Devices for Energy and Environment (ICAN-2019) (International Conference).</td>
|
||||||
|
<td>Advanced Materials and Nano-electronics Research Group of CNT Lab, in ABV-IIITM, Gwalior</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Mar.2019</td>
|
||||||
|
<td>2019: Oral presentation: Supercapacitors to Supercapatteries: Renaissance in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference of Emerging Technologies and Sustainable Development 2019 (ICETSD '19)(International Conference).</td>
|
||||||
|
<td>Government College of Engineering and Leather Technology, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08.Jan.2020</td>
|
||||||
|
<td>2020: Two-Day International Seminar on "Innovation, Expansion, Impacts and Challenges in Chemical and Biological Sciences" to be held on 8-9th January, 2020.</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Feb.2020</td>
|
||||||
|
<td>2020: National Symposium on Renewable Energy for Sustainable Future: Materials & Technology Development at Heritage Institute of Technology on 27/02/2020 on : Recent progress of supercapacitors.</td>
|
||||||
|
<td>Heritage Institute of Technology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Subjects (Paper with Code) taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTCOR01T - ANTGCOR01P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTGCOR02T - ANTGCOR02P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTGCOR03T - ANTGCOR03P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTGCOR04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTG DSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTG DSC 02T - ANTGDSE02P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTACOR09T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTACOR11T - ANTACOR13T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTMIN101T - ANTMIN101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTMIN202T - ANTMIN202P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTMIN303T - ANTMIN303P</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-award" role="tabpanel" aria-labelledby="v-pills-award-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Award Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Qualified in nationally competitive examination, JAM -2005, conducted by Indian Institute of Technology (IIT), All India Rank-162</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, CSIR-UGC NET - 2006, conducted jointly by Council of Scientific and Industrial Research (CSIR) and University Grants Commission (UGC), Govt. of India, 2006, December for lectureship and research fellowship. Selected for SPM interview under CSIR.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2006, conducted by Indian Institute of Technology (IIT), All India Rank-281</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2007, conducted by Indian Institute of Technology (IIT), All India Rank-12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Poster award for the presentation: on “Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction”. (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS At Sree Gopal Banerjee College, Bagati, Mogra, Hooghly, West Bengal)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>2nd best poster presentation at International Conference on Materials Research and Applications (ICMRA-2016) from 11-13 March 2016 @ CMR TECHNICAL CAMPUS, Kandlakoya (V), Medchal (M), RR Dist, Telangana, India-501401, (Approved by AICTE, New Delhi, Affiliated to JNTU, Hyderabad.)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>3rd Young Women Scientist paper presentation at International Conference on Nanotechnology for Better Living, 2016 jointly organized by IIT Kanpur and NIT Srinagar at Srinagar, J&K, India on 25-29th May, 2016.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Research Excellence Award-2021, InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Young Researcher Award-2021 InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Women Researcher Award in the International Scientist Awards on Engineering, Science and Medicine by VDGOOD Professional Association</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Asia’s Science, Technology and Research Awards 2023 (ASTRA 2023) Outstanding Researcher Award in Materials Science</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-hand" role="tabpanel" aria-labelledby="v-pills-hand-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Membership</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
<th>Membership</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Moderator and Question Paper Setters of UG and PG Level CHEMISTRY COURSES IN various reputed Universities in India.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life Member at Indian Physical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life member of Indian Association for the Cultivation of Science, Jadavpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Reviewer of many reputed International peer-reviewed journals (Springer, Elsevier, Wiley)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>InSc Professional Member, Institute of Scholars, Department of Awards, Muddhinapalya Bengaluru-560091, Karnataka, India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Editorial Board Member of Peer-reviewed International Journal: Materials Science Research India for 2017 and 2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
317
faculty/sadik-mondal.php
Normal file
317
faculty/sadik-mondal.php
Normal file
@@ -0,0 +1,317 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Sadik Mondal</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, B.ED</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: KAVYA </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: KAVYA</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.A</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>SANSKRIT</td>
|
||||||
|
<td>W.B.S.U</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>SANSKRIT</td>
|
||||||
|
<td>CALCUTTA UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.ED</td>
|
||||||
|
<td>2014-2015</td>
|
||||||
|
<td>SANSKRIT</td>
|
||||||
|
<td>CALCUTTA UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>17/01/2017</td>
|
||||||
|
<td>Till Now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SADIK MONDAL</td>
|
||||||
|
<td>संस्कृत साहित्य मे भ्रष्टाचार और विश्वासघात</td>
|
||||||
|
<td>शोध मंथन</td>
|
||||||
|
<td>VIII, NO.4</td>
|
||||||
|
<td>Page no.- 160-166</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>F.I.P</td>
|
||||||
|
<td>ALIGARH MUSLIM UNIVERSITY</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>R.C</td>
|
||||||
|
<td>JADAVPUR UNIVERSITY</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SADIK MONDAL</td>
|
||||||
|
<td>সংস্কৃত সাহিত্যে নিম্নবর্গীয় চরিত্র</td>
|
||||||
|
<td>Emerging Possibilities in Sanskrit Studies</td>
|
||||||
|
<td>Raniganj Girls’ College</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SANDSC101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SANDSC202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>SANDSC303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>SANACOR01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>SANACOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>SANACOR03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>SANACOR04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>SANACOR05T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>SANACOR06T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>SANACOR07T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>SANACOR08T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>SANACOR09T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>SANACOR10T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>SANADSE03T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
268
faculty/saheli-dey.php
Normal file
268
faculty/saheli-dey.php
Normal file
@@ -0,0 +1,268 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Saheli Dey</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-II</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:sahelidey.math@sreechaitanyacollege.ac.in" class="fw-bold">sahelidey.math@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Pure Mathematics</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest:</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>WBUTTEPA</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>07.08.2018</td>
|
||||||
|
<td>31.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT-II</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.01.2020</td>
|
||||||
|
<td>To Date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td-</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
259
faculty/samir-kr-sardar.php
Normal file
259
faculty/samir-kr-sardar.php
Normal file
@@ -0,0 +1,259 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">SAMIR KR SARDAR</h3>
|
||||||
|
<p class="" style="font-weight: 500;">ASSISTANT PROFESSOR</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: ENVIRONMENT GEOGRAPHY </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: ENVIRONMENT, SOCIO-ECONOMIC AND POLITICAL GEOGRAPHY</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B. Sc.</td>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>GEOGRAPHY</td>
|
||||||
|
<td>CALCUTTA UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M. Sc.</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>GEOGRAPHY</td>
|
||||||
|
<td>CALCUTTA UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ASSISTANT PROFESSOR</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>30/05/2017</td>
|
||||||
|
<td>Till Now</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>FACULTY INDUCTION PROGRAMME</td>
|
||||||
|
<td>UGC-HRDC<br>UNIVERSITY OF CALCUTTA</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>INTERDISCIPLINARY REFRESHER COURSE IN HUMANITIES AND SOCIAL SCIENCE</td>
|
||||||
|
<td>UGC-HRDC<br>UNIVERSITY OF CALCUTTA</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
428
faculty/sanjoy-singha.php
Normal file
428
faculty/sanjoy-singha.php
Normal file
@@ -0,0 +1,428 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">SANJOY SINGHA</h3>
|
||||||
|
<p class="" style="font-weight: 500;">ASSITANT PROFESSOR IN DEFENCE STUDIES</p>
|
||||||
|
<p style="margin-top: -10px;">B.A, M.A, B.Ed, P.Hd</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:sanjoydefencestudies@scc.ac.in" class="fw-bold">sanjoydefencestudies@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: NATIONAL SECURITY, INTERNATIONAL RELATIONS</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: NATIONAL SECURITY, INTERNATIONAL RELATIONS</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.A</td>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>DEFENCE, EDUCATION, BENGALI</td>
|
||||||
|
<td>KALYANI UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>MILITARY STUDIES</td>
|
||||||
|
<td>KANPUR UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.ED</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>SOCIAL STUDIES</td>
|
||||||
|
<td>YOGI VEMANA UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.A</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>EDUCATION</td>
|
||||||
|
<td>KANPUR UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>PH.D</td>
|
||||||
|
<td>PURSUING</td>
|
||||||
|
<td>INTERNATIONAL RELATIONS</td>
|
||||||
|
<td>RIMT UNIVERSITY (PUNJAB)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>GUEST LECTURER</td>
|
||||||
|
<td>SOUTH MALDA COLLEGE</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>GUEST LECTURER</td>
|
||||||
|
<td>ASANNAGAR MADAN MOHAN TARKALANKAR COLLEGE</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>ASSISTANT PROFESSOR</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>TILL DATE</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SANJOY SINGHA</td>
|
||||||
|
<td>INDO-BANGLADESH RELATION: NEW ASPECT OF CONFLICT AND CO-OPERATION</td>
|
||||||
|
<td>BASUNDHARA (EDITED BOOK)</td>
|
||||||
|
<td>VOL-1</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2018</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SANJOY SINGHA</td>
|
||||||
|
<td>INDO-BANGLADESH CONTEMPORARY RELATIONS</td>
|
||||||
|
<td>STUDIES IN INDIAN PLACE NAME (UGC CARE JOURNAL)</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>SANJOY SINGHA</td>
|
||||||
|
<td>A CRITICAL ANALYSIS OF INDO-BANGLADESH WATER SHARING ISSUE</td>
|
||||||
|
<td>VASUDAIBHA KUTUMBAKAM: THE NEIGHBOURHOOD FOREIGN POLICY (EDITED BOOK)</td>
|
||||||
|
<td>VOL-1</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>SANJOY SINGHA</td>
|
||||||
|
<td>INDO-BANGLADESH SOFT POWER DIPLOMACY</td>
|
||||||
|
<td>G20: A WAY FORWARD (EDITED BOOK)</td>
|
||||||
|
<td>VOL-1</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>SANJOY SINGHA & DR. HARSIMRAN KAUR</td>
|
||||||
|
<td>RECENT DEVELOPMENTS IN INDO-BANGLADESH RELATIONS</td>
|
||||||
|
<td>THE ACADEMIC (A PEER REVIEWED REFERRED ONLINE JOURNAL)</td>
|
||||||
|
<td>VOL-2</td>
|
||||||
|
<td></td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ORIENTATION PROGRAMME</td>
|
||||||
|
<td>ISWAR SARAN POST GRADUATE COLLEGE (ALLAHABAD)</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>REFRESHERS COURSE</td>
|
||||||
|
<td>ALLAHABAD UNIVERSITY</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>SANJOY SINGHA</td>
|
||||||
|
<td>INDIA-BANGLADESH RELATIONS: CO-OPERATION, CHALLENGES AND FUTURE PERSPECTIVES</td>
|
||||||
|
<td>POPULISM, DEMOCRACY & DEVELOPMENT: RECENT TRENDS</td>
|
||||||
|
<td>DEPT. OF POLITICAL SCIENCE, SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>NATIONAL</td>
|
||||||
|
<td>2025</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>02</td>
|
||||||
|
<td>SANJOY SINGHA</td>
|
||||||
|
<td>THE CHANGING DYNAMICS OF NATO AND ITS RELEVANCE IN THE 21ST CENTURY</td>
|
||||||
|
<td>ROLE OF EDUCATION HUMANITIES AND SOCIAL SCIENCE IN ACHIEVING SUSTAINABLE DEVELOPMENT GOALS IN INDIA</td>
|
||||||
|
<td>RIMT UNIVERSITY</td>
|
||||||
|
<td>NATIONAL</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>NEP</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>DFSCOR101T</td>
|
||||||
|
<td>DFSCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>DFSGCOR202T</td>
|
||||||
|
<td>DFSGCOR202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>DFSGCOR303T</td>
|
||||||
|
<td>DFSGCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3"><strong>CBCS</strong></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>DFSGCORO1T</td>
|
||||||
|
<td>DFSGCORO1T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>DFSGCOR02T</td>
|
||||||
|
<td>DFSGCOR02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>DFSGCOR03T</td>
|
||||||
|
<td>DFSGCOR03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>DFSGCOR04T</td>
|
||||||
|
<td>DFSGCOR04T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>DFSGDSE01T</td>
|
||||||
|
<td>DFSGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>DFSGDSE02T</td>
|
||||||
|
<td>DFSGDSE02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>DFSGDSE03T</td>
|
||||||
|
<td>DFSGDSE03T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>DFSGDSE06T</td>
|
||||||
|
<td>DFSGDSE06T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>DFSGGEC01T</td>
|
||||||
|
<td>DFSGGEC01T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>DFSGGEC02T</td>
|
||||||
|
<td>DFSGGEC02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>DFSGSSEC01M</td>
|
||||||
|
<td>DFSGSSEC01M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>DFSGSSEC02M</td>
|
||||||
|
<td>DFSGSSEC02M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>DFSGSSEC03M</td>
|
||||||
|
<td>DFSGSSEC03M</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>DFSGSSEC04M</td>
|
||||||
|
<td>DFSGSSEC04M</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>NCC ‘C’ CERTIFICATE HOLDER</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>BASIC COMPUTER KNOWLEDGE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>FOOD PROCESSING BASIC TRAINING</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
299
faculty/shyamaprasad-das-dhibar.php
Normal file
299
faculty/shyamaprasad-das-dhibar.php
Normal file
@@ -0,0 +1,299 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Shyamaprasad Das Dhibar</h3>
|
||||||
|
<p class="" style="font-weight: 500;">State Aided College Teacher (SACT-1)</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, B.Ed, M.Phil, M.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:sdasdhibar@gmail.com" class="fw-bold">sdasdhibar@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">7431883601</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Micro Regional Planning. </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Forest Governance.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>2012</td>
|
||||||
|
<td>Geography (Hons), Economics & Political Science (Pass)</td>
|
||||||
|
<td>WBSU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Geography</td>
|
||||||
|
<td>WBSU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Education</td>
|
||||||
|
<td>WBSU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Phil</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Development Studies</td>
|
||||||
|
<td>CU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Ed</td>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Education</td>
|
||||||
|
<td>WBUTTEPA</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Netaji Nagar College</td>
|
||||||
|
<td>10/07/2018</td>
|
||||||
|
<td>24/12/2019</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Physical Geography (GEOMC01T)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Human Geography (GEOMC02T)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>General Cartography + Lab (GEOMC03T/3P)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Geomatics and Spatial Analysis (GEOMD01M)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Remote Sensing (GEOSSEC01M)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Advanced Spatial Statistical Techniques (GEOSSEC02M)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Soil and Biogeography (GEOGDSE01T)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Project Report Based on Field Work (GEOGDSE04P)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
282
faculty/smt-kaly-das.php
Normal file
282
faculty/smt-kaly-das.php
Normal file
@@ -0,0 +1,282 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">KALY DAS</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-1</p>
|
||||||
|
<p style="margin-top: -10px;">P.G, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:kalydas1994@gmail.com" class="fw-bold">kalydas1994@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9093075276</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: KATHASAHITYA</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: KATHASAHITYA</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>P.G.</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>BENGALI</td>
|
||||||
|
<td>WEST BENGAL STATE UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.ED.</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>BENGALI</td>
|
||||||
|
<td>THE WEST BENGAL UNIVERSITY OF TEACHERS TRAINING EDUCATION PLANNING AND ADMINISTRATION</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>GUEST LECTURER</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>27.02.2019</td>
|
||||||
|
<td>31.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE, HABRA</td>
|
||||||
|
<td>01.01.2020</td>
|
||||||
|
<td>TILL NOW</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Category</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
294
faculty/smt-keya-roy.php
Normal file
294
faculty/smt-keya-roy.php
Normal file
@@ -0,0 +1,294 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Smt. Keya Roy</h3>
|
||||||
|
<p class="" style="font-weight: 500;">State Aided College Teacher (Category II)</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:roy2keya@scc.ac.in" class="fw-bold">roy2keya@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Taxonomy & Biosystematics </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest:</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>Barasat Govt. College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Botany</td>
|
||||||
|
<td>West Bengal State University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed.</td>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Life Science</td>
|
||||||
|
<td>The West Bengal University of Teachers' Training, Education Planning and Administration</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Guest Teacher</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>18.09.2018</td>
|
||||||
|
<td>31.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>State Aided College Teacher (Category II)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.01.2020</td>
|
||||||
|
<td>Present</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Phycology, Microbiology, Mycology, Phytopathology and Archegoniate (BOTMIN101/ BOTCOR101) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Plant Ecology and Taxonomy (BOTMIN202/ BOTCOR202) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Plant Anatomy and Embryology (BOTMIN303/ BOTCOR303) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Plant Physiology and Metabolism (BOTCOR404) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Cell and Molecular Biology (BOTCOR505) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Analytical Techniques in Plant Sciences (BOTCOR606) (Theory & Practical)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>Floriculture and Gardening (BOTHSEC101M) (Theory)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>Tissue Culture Technique and Micropropagation (BOTHSEC202M) (Theory)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
291
faculty/smt-payel-bagchi.php
Normal file
291
faculty/smt-payel-bagchi.php
Normal file
@@ -0,0 +1,291 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Payel Bagchi</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-1</p>
|
||||||
|
<p style="margin-top: -10px;">B.A(H), M.A, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:Bagchi.Payel.beng@scc.ac.in" class="fw-bold">Bagchi.Payel.beng@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: কথাসাহিত্য</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: N/A</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B. A (Hons)</td>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Bengali Honours</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M. A</td>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Bengali Literature</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B. Ed</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>24/09/2018</td>
|
||||||
|
<td>31/12/2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01/01/2020</td>
|
||||||
|
<td>Till the date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Payel Bagchi</td>
|
||||||
|
<td>সমকামিতার ভিন্ন সমীকরণ রবিশংকর বলের গল্প 'দারুনিরঞ্জন'</td>
|
||||||
|
<td>সাহিত্যে প্রেম, সমাজ বিহর্গিত সম্পর্ক, পরকীয়া এবং সামকামিতা অনুসন্ধান জীবনবীক্ষার নবদিগন্ত</td>
|
||||||
|
<td>সংখ্যা - ১</td>
|
||||||
|
<td>১৭-২২</td>
|
||||||
|
<td>2025</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Category</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>বাংলা</td>
|
||||||
|
<td>UG</td>
|
||||||
|
<td>স্নাতক</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>বাংলা</td>
|
||||||
|
<td>Hons</td>
|
||||||
|
<td>সাম্মানিক</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>বাংলা</td>
|
||||||
|
<td>PG</td>
|
||||||
|
<td>স্নাতকত্তোর</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
268
faculty/somnath-saha.php
Normal file
268
faculty/somnath-saha.php
Normal file
@@ -0,0 +1,268 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Somnath Saha</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-I</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:ss.math@sreechaitanyacollege.ac.in" class="fw-bold">ss.math@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Applied Mathematics</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Cosmology</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>WBUTTEPA</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Guest Lecturer</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>09.11.2017</td>
|
||||||
|
<td>31.12.2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT-I</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.01.2020</td>
|
||||||
|
<td>Till Date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>INSPIRE(SHE)</td>
|
||||||
|
<td>DST</td>
|
||||||
|
<td>2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Subhajit Saha, Abdulla Al Mamon, Somnath Saha</td>
|
||||||
|
<td>Evolution of primordial black holes in an adiabatic FLRW universe with gravitational particle creation</td>
|
||||||
|
<td>General Relativity and Gravitation</td>
|
||||||
|
<td>Vol 54, No 122</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
327
faculty/sri-rakibul-hasan-biswas.php
Normal file
327
faculty/sri-rakibul-hasan-biswas.php
Normal file
@@ -0,0 +1,327 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Rakibul Hasan Biswas</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-1</p>
|
||||||
|
<p style="margin-top: -10px;">P.G, B.Ed</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:N/A" class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">8509047542</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: PRAGADHUNIK BANGLA SAHITYA</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: FOLK SONG</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>P.G</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>BENGALI</td>
|
||||||
|
<td>WEST BENGAL STATE UNIVERSITY</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.ED</td>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>BENGALI</td>
|
||||||
|
<td>UNIVERSITY OF KALYANI</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>GUEST LECTURER</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE</td>
|
||||||
|
<td>24/09/2018</td>
|
||||||
|
<td>31/12/2019</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>SACT-1</td>
|
||||||
|
<td>SREE CHAITANYA COLLEGE</td>
|
||||||
|
<td>01/01/2020</td>
|
||||||
|
<td>TILL NOW</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>রাকিবুল হাসান বিশ্বাস</td>
|
||||||
|
<td>জীবনবোধের ঐকতানে বাউলকবি কুবির গোঁসাই ও শ্রীরামকৃষ্ণ পরমহংসদেব</td>
|
||||||
|
<td>লোকসাহিত্যের স্বরূপ ও বাংলার লোকসংস্কৃতি চর্চা, বরুণ রায়, সৃষ্টি প্রকাশনী</td>
|
||||||
|
<td>979-86-734178-6-7 (BOOK CHAPTER)</td>
|
||||||
|
<td>169-180</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>রাকিবুল হাসান বিশ্বাস</td>
|
||||||
|
<td>কথাশিল্পী কাজী নজরুল ইসলাম</td>
|
||||||
|
<td>কথাসাহিত্যে ভিন্ন স্বর, সঞ্জয়কুমার দাস ও পূজা রায়, বঙ্গীয় সাহিত্য সংসদ</td>
|
||||||
|
<td>978-93-889886-2-9 (BOOK CHAPTER)</td>
|
||||||
|
<td>359-364</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>রাকিবুল হাসান বিশ্বাস</td>
|
||||||
|
<td>তপোবিজয় ঘোষের ‘এখন প্রেম’: পর্যালোচনা</td>
|
||||||
|
<td>বাংলা ছোটোগল্প কথা, ড. মোহিনীমোহন সরদার ও ড. শেখ কামাল উদ্দীন, গেটওয়ে পাবলিশিং হাউস</td>
|
||||||
|
<td>978-81-945505-7-0 (BOOK CHAPTER)</td>
|
||||||
|
<td>433-438</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>রাকিবুল হাসান বিশ্বাস</td>
|
||||||
|
<td>শ্রীকৃষ্ণকীর্তনে আদিম ও জৈব প্রবৃত্তি: পুনর্মূল্যায়ন</td>
|
||||||
|
<td>বাংলা সাহিত্যে আদিম ও জৈব প্রবৃত্তির প্রসঙ্গ, সহদেব মণ্ডল ও বরুণ রায়, আনন্দকানন প্রকাশনী</td>
|
||||||
|
<td>978-81-954583-1-8 (BOOK CHAPTER)</td>
|
||||||
|
<td>252-257</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>রাকিবুল হাসান বিশ্বাস</td>
|
||||||
|
<td>কুবিরগীতি</td>
|
||||||
|
<td>ইতিহাস ও সাহিত্য প্রবন্ধমালা, রাজীব বনু, বাংলার পুরাতত্ত্ব প্রকাশনা</td>
|
||||||
|
<td>978-81-947292-5-9 (BOOK CHAPTER)</td>
|
||||||
|
<td>545-547</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>রাকিবুল হাসান বিশ্বাস</td>
|
||||||
|
<td>বাংলা বৈষ্ণব সাহিত্যে বর্ষা</td>
|
||||||
|
<td>ART & REVIEW, রাজীব বনু, বাংলার পুরাতত্ত্ব প্রকাশনা</td>
|
||||||
|
<td>978-81-953388-9-4 (BOOK CHAPTER)</td>
|
||||||
|
<td>136-141</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>রাকিবুল হাসান বিশ্বাস</td>
|
||||||
|
<td>মানিক বন্দ্যোপাধ্যায়ের ‘নেড়ী’: সুকেশিনী ‘তারা’দের কথা</td>
|
||||||
|
<td>চারের দশক—ছোটগল্পে কালবৈশাখী, রবীন্দ্রনাথ বন্দ্যোপাধ্যায় ও বসুমিতা তরফদার, বঙ্গীয় সাহিত্য সংসদ</td>
|
||||||
|
<td>978-93-909939-6-3 (BOOK CHAPTER)</td>
|
||||||
|
<td>219-225</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Category</th>
|
||||||
|
<th>Paper Code</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
303
faculty/suryendu-das.php
Normal file
303
faculty/suryendu-das.php
Normal file
@@ -0,0 +1,303 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Suryendu Das</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT II</p>
|
||||||
|
<p style="margin-top: -10px;">U.G, P.G</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:suryo.polsc@sreechaitanyacollege.ac.in" class="fw-bold">suryo.polsc@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">N/A</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Cultural Politics</h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: State and Politics, Multiculturalism, Identity and Caste Politics.</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Under Graduate</td>
|
||||||
|
<td>1998</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>RBU</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Post Graduate</td>
|
||||||
|
<td>2000</td>
|
||||||
|
<td>Political Science</td>
|
||||||
|
<td>RBU</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>PART TIME</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2002</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SACT-II</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Present</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Semester</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>SEM-I (HONOURS)</td>
|
||||||
|
<td>Political Theory: Concepts<br>Unit 2: Citizenship</td>
|
||||||
|
<td>PLSDSC101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>SEM-I (GENERAL)</td>
|
||||||
|
<td>Political Theory: Concepts<br>Unit 2: Rights, Democracy</td>
|
||||||
|
<td>PLSMIN101T / PLSCOR101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>SEM-III (HONOURS)</td>
|
||||||
|
<td>Political Theory: Approaches<br>Unit 2: Marxian Theory of Revolution</td>
|
||||||
|
<td>PLSDSC303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>SEM-III (GENERAL)</td>
|
||||||
|
<td>Comparative Government and Politics<br>Unit 2:<br>
|
||||||
|
1. Legislature in UK, USA, and PRC – Composition and Functions of legislative chambers. Committee system in UK and USA<br>
|
||||||
|
2. Judiciary in UK, USA, and PRC (with focus on the Procuratorate)
|
||||||
|
</td>
|
||||||
|
<td>PLSMIN303T / PLSCOR303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>SEM-V (HONOURS)</td>
|
||||||
|
<td>Women, Power and Politics<br>Module III. Indian Experience<br>
|
||||||
|
• Traditional Histography and Feminist Critics<br>
|
||||||
|
• Social reforms movement and position of women in India. History of women struggle in India
|
||||||
|
</td>
|
||||||
|
<td>PLSADSE02T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>SEM-V (GENERAL)</td>
|
||||||
|
<td>Reading Gandhi<br>Module II<br>
|
||||||
|
• Gandhian Thought: Theory and Action<br>
|
||||||
|
• Theory of Satyagraha, Satyagraha in action: Peasant Satyagraha, Kheda; Idea of Trusteeship
|
||||||
|
</td>
|
||||||
|
<td>PLSGDSE01T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Ex NCC Officer</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Football Refree</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
311
faculty/sushanta-saha.php
Normal file
311
faculty/sushanta-saha.php
Normal file
@@ -0,0 +1,311 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Sushanta Saha</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Assistant Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:susantasaha.chem@sreechaitanyacollege.ac.in" class="fw-bold">susantasaha.chem@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">7439513783</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Physical Chemistry </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Duality and Interests in Graphology</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc</td>
|
||||||
|
<td>1999</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>Calcutta University<br>RKMRC, Narendrapur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc</td>
|
||||||
|
<td>2001</td>
|
||||||
|
<td>Chemistry</td>
|
||||||
|
<td>Kalyani University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Science</td>
|
||||||
|
<td>Jadavpur University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>2024</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal/Book</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Author</td>
|
||||||
|
<td>Write - a Process to Feel, Think, Grow</td>
|
||||||
|
<td>Book</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>1-89</td>
|
||||||
|
<td>2022</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Second Author</td>
|
||||||
|
<td>A report groundwater arsenic contamination assay in the delta area of West Bengal. Received 12th July 2021, accepted 14th Published 30th Aug 2021</td>
|
||||||
|
<td>International Journal of Experimental Research and Review (IJERR)</td>
|
||||||
|
<td>2455-4855 (online), Vol 25 (2021)</td>
|
||||||
|
<td>84-88</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Fifth Author</td>
|
||||||
|
<td>Effect of cyclodextrins’ cavity on the kinetics of alkaline hydrolysis of tris (1,10-Phenanthroline) Fe (II) in presence of surfactant</td>
|
||||||
|
<td>Journal of Dispersion Science and Technology</td>
|
||||||
|
<td>01932691, 15322351</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Author</td>
|
||||||
|
<td>The Holistic approach to environmental education through inspirational methods</td>
|
||||||
|
<td>2nd International Conference The Holistic Approach to Environment, Association for Promotion of Holistic Approach to Environment, Buzetska 25, 44000 Sisak, Republic of Croatia</td>
|
||||||
|
<td>ISSN 2623-677X</td>
|
||||||
|
<td>567</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Author</td>
|
||||||
|
<td>SELF LEARNING MATERIAL - CHEMISTRY</td>
|
||||||
|
<td>Netaji Subhas Open University (CBCS)</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6.</td>
|
||||||
|
<td>First Author</td>
|
||||||
|
<td>Role of Entropy to address the role of Mental Health & Hygiene in Education.</td>
|
||||||
|
<td>N. B. Publications, Implication of Mental Health & Hygiene in Education</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>146</td>
|
||||||
|
<td>July 2020</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course/ Summer School</th>
|
||||||
|
<th>Place</th>
|
||||||
|
<th>Duration</th>
|
||||||
|
<th>Sponsoring Agency</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Annual Refresher Programme in Teaching (ARPIT)</td>
|
||||||
|
<td>Online, S.G.T.B. Khalsa College, University of Delhi</td>
|
||||||
|
<td>16 weeks (1.12.2020 - 31.03.2021)</td>
|
||||||
|
<td>UGC and AICTE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refresher Course in Chemistry</td>
|
||||||
|
<td>UGC-HRDC, University of Calcutta</td>
|
||||||
|
<td>3 weeks (30.11.2018 - 20.12.2018)</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>MOOCS ARPIT-Annual Refresher Course</td>
|
||||||
|
<td>40 hours (13.11.2018 - 30.03.2019)</td>
|
||||||
|
<td>UGC, Sri Guru Tegh Bahadur Khalsa College, Delhi</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Level</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code)</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
603
faculty/susmita-sarkar.php
Normal file
603
faculty/susmita-sarkar.php
Normal file
@@ -0,0 +1,603 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">SUSMITA SARKAR</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT II</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc(Honours), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:susmita.anthro@scc.ac.in" class="fw-bold">susmita.anthro@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9382988971,</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Social cultural anthropology </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest:</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-journal-tab" data-bs-toggle="pill" data-bs-target="#v-pills-journal" type="button" role="tab" aria-controls="v-pills-journal" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/news.svg" alt="" />Journal Publication </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-paper-tab" data-bs-toggle="pill" data-bs-target="#v-pills-paper" type="button" role="tab" aria-controls="v-pills-paper" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/paper.svg" alt="" />Paper Presentation </button> -->
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-award-tab" data-bs-toggle="pill" data-bs-target="#v-pills-award" type="button" role="tab" aria-controls="v-pills-award" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button> -->
|
||||||
|
<!-- <button class="d-flex flex-row gap-4 nav-link" id="v-pills-hand-tab" data-bs-toggle="pill" data-bs-target="#v-pills-hand" type="button" role="tab" aria-controls="v-pills-hand" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/hand.svg" alt="" />Membership </button> -->
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>SL NO.</th>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>M. Sc</td>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>Vidyasagar University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>01</td>
|
||||||
|
<td>SACT II</td>
|
||||||
|
<td>Sree Chaitanya College</td>
|
||||||
|
<td>10/2/2009</td>
|
||||||
|
<td>Till Date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-journal" role="tabpanel" aria-labelledby="v-pills-journal-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">JOURNAL PUBLICATION</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Published On</th>
|
||||||
|
<th>Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Observation of microwave plasmons in one-dimensional conjugated polymer chain. B Mondal, D Majumdar and S K Saha Appl. Phys. Lett. 94 (2009) 183109.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2009</td>
|
||||||
|
<td>Mechanism of Ultrasonic Energy-Assisted Formation of V-, Y-Shaped Nano-Structures in Conjugated Polymers D Majumdar R P Maity, S Basu, and S K Saha J. Nano Sc. & Nanotech. 9 (2009) 6896-6901.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Graphene quantum sheet: A new material for spintronic application. S K Saha, M Baskey, D Majumdar. Adv. Mater. 22 (2010) 5531.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Observation of ferroelectric response in conjugated polymer nanotubes. D Majumdar and S K Saha Appl. Phys. Lett., 96 (2010) 183113.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Poly(3-hexylthiophene) nanotubes with superior electronic and optical properties. D Majumdar and S K Saha Chem. Phys. Lett., 489 (2010) 219.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2010</td>
|
||||||
|
<td>Synthesis of single crystalline micron-sized rectangular silver bar. B Mondal, D Majumdar and S K Saha, J. Mater. Research. 25 (2010) 383.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Nanotechnology: Its current scope and prospect Dipanwita Majumdar Acad. J Aureole Vol 3(2), (2011) 114-119.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Epitaxial growth of crystalline polyaniline on reduced graphene oxide D Majumdar M Baskey, S K Saha Macromol. Rapid Commun. 32 (2011) 1277.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Graphene and its composites as supercaps. Dipanwita Majumdar Acad. J Aureole 4, (2013) 11-16.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2014</td>
|
||||||
|
<td>Reduced Graphene Oxide: An Efficient Supercapacitor Material. Dipanwita Majumdar Academic J. Aureole, 5 (2014) 42-46.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Graphene-MnO2 Composite as Electrocatalyst for Oxygen Reduction Reactions. Dipanwita Majumdar Academic J. Aureole, 6&7(1) (2015-16) 31-37.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Charge Transport in Polypyrrole Nanotubes. Dipanwita Majumdar, S.K. Saha J. Nanosci. Nanotechnol. 15 (2015) 9975-9981.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Graphene-Polyaniline nanocomposites as Proficient Energy Storage Material-An Overview. Dipanwita Majumdar Innovative Energy & Research 5 (2016) 2.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Sonochemically Synthesized Beta-Cyclodextrin Functionalized Graphene Oxide and its Efficient Role in Adsorption of Water Soluble Brilliant Green Dye. Dipanwita Majumdar J Environ Anal Toxicol 6 (2016) 5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Hydroxy functionalized Graphene: A Proficient Energy Storage Material, Dipanwita Majumdar and Sujata Pal, J Fundam. Renewable Energy Appl., 6 (2016) 209.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Microwave-assisted synthesis of Mn2O3 porous balls as bifunctional electrocatalyst for oxygen reduction and evolution reaction Dipanwita Majumdar, et al Catal. Sci. Technol., 6(5) (2016) 1417-1429.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>Synthesis, characterization and electrochemical study of hydroxy-functionalized graphene/MnO2 nanocomposite D Majumdar, SK Bhattacharya Materials Today: Proceedings 3 (10), 3872-3877.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Sonochemically synthesized hydroxy-functionalized graphene-MnO2 nanocomposite for supercapacitor applications. Dipanwita Majumdar, and Swapan K Bhattacharya J Appl Electrochem 47 (2017) 789-801.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Proficiency of graphene oxide in adsorption and removal of methylene blue from water: An overview. Dipanwita Majumdar J Environ Chem Toxicol 1 (2017) 4-8.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Detoxification of Heavy Metal ion-contaminated Drinking Water by Green Technology - A Short Overview. Dipanwita Majumdar Current Green Chemistry 4 (2017) 38-44.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Functionalized Graphene-MnO2 nanocomposite in Fuel Cell Applications Dipanwita Majumdar Asian Journal of Science and Technology, 8(3),(2017) 4394-4398.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>Ultrasound assisted formation of reduced graphene oxide-copper (II) oxide nanocomposite for energy storage applications Dipanwita Majumdar, Nirmal Baugh, and Swapan K Bhattacharya Colloids and Surfaces A: Physicochem. Eng. Aspects 512 (2017) 158-170.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>An Overview on Ruthenium Oxide Composites-Challenging Material for Energy Storage Applications D Majumdar Materials Science Research India 15(1) ,(2018) 30-40.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Anodic Oxidation of Butan-1-ol on Reduced Graphene Oxide-Supported-Pd-Ag-Nanoparticles/ Nanoalloy for Fuel Cell Applications Ankita Mahajan, Senjuti Banik, Dipanwita Majumdar and Swapan Kumar Bhattacharya ACS Omega, 4 (2019) 4658-4670.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Temperature Control Synthesis of Platinum Nanoparticle-Decorated Reduced Graphene Oxide for Electrocatalytic Oxidation of Methanol. Senjuti Banik; Ankita Mahajan; Apurba Ray; Dipanwita Majumdar; Sachindranath Das; Swapan Kumar Bhattacharya Flat Chem (2019) Flat Chem 16 (2019) 100111.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis and characterization of biopolymer based hybrid hydrogel nanocomposite and study of their electrochemical efficacy. Arindam Giri, Rahul Bhowmick, Chandraday Prodhan, Dipanwita Majumdar, Swapan Kumar Bhattacharya M Ali International Journal of Biological Macromolecules.123 (2019) 228-238.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Engineering of Gadolinium-Decorated Graphene Oxide Nanosheets for Multimodal Bioimaging and Drug Delivery. Nitya Chawda, Mainak Basu, Dipanwita Majumdar, Raju Poddar, Santosh Kumar Mahapatra, Indrani Banerjee, ACS OMEGA 4(2019) 12470-12479.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Optimization of physicochemical and dielectric features in the conductive copolymers of aniline and 2-aminophenol US Waware, AMS Hamouda, D Majumdar Polymer Bulletin 76 (11), 5603-5617.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review on V2O5 and Its Carbon-Based nanocomposites as Supercapacitor Electrode Materials. Dipanwita Majumdar, Manas Mandal and Swapan Kumar Bhattacharya ChemElectroChem 2019, 6, 1623. (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>A Review of Recent Progress in Ruthenium Oxides based Composites for Supercapacitor Applications. Dipanwita Majumdar, Thandavarayan Maiyalagan, Zhongqing Jiang ChemElectroChem 6 (2019) 4343 (Wiley).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Magnetic, pseudocapacitive and H2O2-electrosensing properties of self assembled superparamagnetic Co0.3Zn0.7Fe2O4 with enhanced saturation magnetization Rituparna Mondal, Koyel Sarkar, Subhrajyoti Dey, Dipanwita Majumdar, Swapan Bhattacharya, Pintu Sen, Sanjay Kumar, ACS Omega 47 (2019) 12632-12646.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2019</td>
|
||||||
|
<td>Synthesis, characterization and physicochemical studies of copolymers of aniline and 3 nitroaniline Umesh Somaji Waware, A. M. S. Hamouda, Dipanwita Majumdar Polym. Bull. (2019). pp1-20 DOI: https://doi.org/10.1007/s00289-019-02957-y.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Journey from Supercapacitor to Supercapatteries: Recent advancements in electrochemical energy storage system, D Majumdar et al. Emergent Materials, Springer, ISSN : 2522-574X, https://doi.org/10.1007/s42247-020-00090-5.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Review on Current Progress of MnO2-based Ternary Nanocomposites for Supercapacitor Applications, D Majumdar, Chemelectrochem, Wiley, doi: https://doi.org/10.1002/celc.202001371.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent advancements of copper oxide based nanomaterials for supercapacitor applications D Majumdar, S Ghosh Journal of Energy Storage, 101995, https://doi.org/10.1016/j.est.2020.101995.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2020</td>
|
||||||
|
<td>Recent progress in copper sulfide based nanomaterials for high energy supercapacitor applications D Majumdar Journal of Electroanalytical Chemistry, https://doi.org/10.1016/j.jelechem.2020.114825.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Majumdar D. Role of MXenes/Polyaniline Nanocomposites in Fabricating Innovative Supercapacitor Technology. Advanced Energy Conversion Materials [Internet]. 2021 Nov. 20 [cited 2022 Jan. 13]; 3(1): 30-53. Available from: https://ojs.wiserpub.com/index.php/AECM/article/view/1148, https://doi.org/10.37256/aecm.3120221148.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Kinsuk Das, Dipanwita Majumdar, Prospects of MXenes/graphene nanocomposites for advanced supercapacitor applications, Journal of Electroanalytical Chemistry, Volume 905, 2022, 115973, ISSN 1572-6657, https://doi.org/10.1016/j.jelechem.2021.115973.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Room Temperature Synthesis of Perovskite Hydroxide, MnSn(OH)6: A Negative Electrode for Supercapacitor Authors Manas Mandal, Krishna Chattopadhyay, Malay Chakraborty, Wonjae Shin, Kamal Kanti Bera, Sujit Chatterjee, Akbar Hossain, Dipanwita Majumdar, Arup Gayen, Changwoon Nah, Swapan Kumar Bhattacharya Publication date 2022/11 Journal Electronic Materials Letters Volume 18 Issue 6 Pages 559-567 Publisher The Korean Institute of Metals and Materials.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2022</td>
|
||||||
|
<td>Recent Developments of Methanol Electrooxidation Using Nickel-based Nanocatalysts Authors Dipanwita Majumdar, Swapan Kumar Bhattacharya Publication date 2022/10/26 Source ChemistrySelect Volume 7 Issue 40 Pages e202201807.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Graphitic Carbon Nitride (g-C3N4): A Proficient Electrode Material for Flexible Supercapacitors Authors Rudra Sarkar and Munmun Mondal & Dipanwita Majumdar Publication date 2023/12/7 Journal Advanced Materials Science and Technology Volume 5 Issue 2 Pages https://doi.org/10.37155/2717-526X-0502-.</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-paper" role="tabpanel" aria-labelledby="v-pills-paper-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Paper Presentation</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Date</th>
|
||||||
|
<th>Paper Title</th>
|
||||||
|
<th>Organizer</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2010</td>
|
||||||
|
<td>2010: Oral Presentation: on "Formation Dynamics of V- and Y-shaped Polyaniline nanowires". 4-5th Feb, 2010 (UGC sponsored National Seminar: EMERGING CONCERNS AND ADVANCES IN CHEMISTRY).</td>
|
||||||
|
<td>Lady Brabourne College (Kolkata)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Jan.2011</td>
|
||||||
|
<td>2011: Poster presentation: on "Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction". (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS).</td>
|
||||||
|
<td>Sree Gopal Banerjee College, Bagati, Mogra, Hooghly</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Jul.2013</td>
|
||||||
|
<td>2013: Oral Presentation: ON THE TOPIC "Nanopesticides: A Challenging Domain of Current Research" by D Majumdar 2013. (National Conference).</td>
|
||||||
|
<td>Panchkot Mahavidyalaya, Purulia</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>01.Aug.2015</td>
|
||||||
|
<td>2015: Poster presentation: on "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Graphene Oxide-Copper (II) Oxide composites." on 1-2nd August, 2015. (National Conference/ National Symposium).</td>
|
||||||
|
<td>Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14.Dec.2015</td>
|
||||||
|
<td>2015: Poster presentation: NANOS 2015- International conference on the topic "Synthesis, Characterization and Comparative Electrochemical Studies of Graphite-Copper (II) Oxide and Reduced-Graphene Oxide-Copper (II) Oxide composites."</td>
|
||||||
|
<td>GITAM University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>04.Feb.2016</td>
|
||||||
|
<td>2016: Poster presentation: on the topic "Role of beta-cyclodextrin-functionalized graphene oxide in removal of organic-dye water pollutants." (National Conference).</td>
|
||||||
|
<td>Dept of Chemistry, Burdwan University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11.Mar.2016</td>
|
||||||
|
<td>2016: Poster presentation: ICMRA 2016- "Synthesis, Characterization and Electrochemical Study of Hydroxy-Functionalized Graphene/MnO2 nanocomposite" (International Conference).</td>
|
||||||
|
<td>CMR Technical Campus, Hyderabad</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.May.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Synthesis, Characterization and Electrochemical Studies of hydroxy functionalized Graphene-MnO2 Nanocomposite" Dipanwita Majumdar INTERNATIONAL CONFERENCE ON NANOTECHNOLOGY FOR BETTER LIVING (ICNBL-2016) (25/5/2016 -29/5/2016 NIT SRINAGAR AND IIT KANPUR.</td>
|
||||||
|
<td>NIT SRINAGAR, JAMMU AND KASHMIR</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>09.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Tuning of Charge Transport Properties in Polypyrrole Nanotubes" Dipanwita Majumdar UGC sponsored ONE DAY National Seminar 2016 RECENT ADVANCES IN LIFE SCIENCE IN THE LIGHT OF CHEMISTRY.</td>
|
||||||
|
<td>Bethune College</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation on "Adsorption and Removal of Water Soluble Methylene Blue Dye by Beta-Cyclodextrin Functionalized Graphene Oxide" Dipanwita Majumdar UGC sponsored National Seminar 2016 ENTHRALLING FACETS OF MOLECULAR MANIFESTATION IN CHEMICAL SCIENCES.</td>
|
||||||
|
<td>Bidhannagar College, SALTLAKE</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>29.Sep.2016</td>
|
||||||
|
<td>2016: Poster presentation: Role of Sonochemically synthesized Beta-Cyclodextrin Functionalized Graphene Oxide in Adsorption of Water Soluble Brilliant Green Dye: Dipanwita Majumdar UGC sponsored National Seminar 2016 on RECENT TRENDS IN CHEMICAL RESEARCH.</td>
|
||||||
|
<td>Sarojini Naidu College for Women and Hiralal Mazumdar College for Women</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>25.Nov.2016</td>
|
||||||
|
<td>2016: Poster presentation: "Adsorption and Removal of Soluble Methylene Blue Dye from Water by Sorbefacient Graphene Oxide" Dipanwita Majumdar UGC-Sponsored two day National Seminar on "MODERN TRENDS IN CHEMICAL SCIENCES".</td>
|
||||||
|
<td>Dept of Chemistry, Narasinha Dutt College and Prasanta Chandra Mahalanobis Mahavidyalaya</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>03.Aug.2018</td>
|
||||||
|
<td>2018: Poster presentation: Recent Advancements of RuO2/Functionalized-Graphene Composites for Supercapacitor Applications By Dipanwita Majumdar at Recent Advances in Molecules and Materials: RA2M 2018' (International Conference).</td>
|
||||||
|
<td>School of Applied Science & Humanities, Haldia Institute of Technology, Haldia-721657 and Indian Chemical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Jan.2019</td>
|
||||||
|
<td>2019: Poster presentation: Supercapatteries: A Revolution in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference on Advances in Nanomaterials and Devices for Energy and Environment (ICAN-2019) (International Conference).</td>
|
||||||
|
<td>Advanced Materials and Nano-electronics Research Group of CNT Lab, in ABV-IIITM, Gwalior</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>05.Mar.2019</td>
|
||||||
|
<td>2019: Oral presentation: Supercapacitors to Supercapatteries: Renaissance in Electrochemical Energy Storage Systems By Dipanwita Majumdar International Conference of Emerging Technologies and Sustainable Development 2019 (ICETSD '19)(International Conference).</td>
|
||||||
|
<td>Government College of Engineering and Leather Technology, Kolkata</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>08.Jan.2020</td>
|
||||||
|
<td>2020: Two-Day International Seminar on "Innovation, Expansion, Impacts and Challenges in Chemical and Biological Sciences" to be held on 8-9th January, 2020.</td>
|
||||||
|
<td>-</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>27.Feb.2020</td>
|
||||||
|
<td>2020: National Symposium on Renewable Energy for Sustainable Future: Materials & Technology Development at Heritage Institute of Technology on 27/02/2020 on : Recent progress of supercapacitors.</td>
|
||||||
|
<td>Heritage Institute of Technology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Subjects (Paper with Code) taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>ANTGDSE01T, ANTGDSE02T, ANTGDSE03T, ANTGDSE04T, ANTGDDSC101T, ANTDSC202T, ANTGDSC303T, ANTHMD101T, SEC(ANTHROPOLOGY)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Diploma in Information technology</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-award" role="tabpanel" aria-labelledby="v-pills-award-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Award Details</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2005</td>
|
||||||
|
<td>Qualified in nationally competitive examination, JAM -2005, conducted by Indian Institute of Technology (IIT), All India Rank-162</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, CSIR-UGC NET - 2006, conducted jointly by Council of Scientific and Industrial Research (CSIR) and University Grants Commission (UGC), Govt. of India, 2006, December for lectureship and research fellowship. Selected for SPM interview under CSIR.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2006, conducted by Indian Institute of Technology (IIT), All India Rank-281</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2007</td>
|
||||||
|
<td>Qualified in nationally competitive examination, GATE -2007, conducted by Indian Institute of Technology (IIT), All India Rank-12</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2011</td>
|
||||||
|
<td>Poster award for the presentation: on “Epitaxial Growth of Single Crystalline Polyaniline on Reduced Graphene Oxide to grow High Quality P-N Junction”. (UGC sponsored National Level Seminar on RECENT ADVANCES IN CHEMICAL SCIENCES AND RELATED AREAS At Sree Gopal Banerjee College, Bagati, Mogra, Hooghly, West Bengal)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>2nd best poster presentation at International Conference on Materials Research and Applications (ICMRA-2016) from 11-13 March 2016 @ CMR TECHNICAL CAMPUS, Kandlakoya (V), Medchal (M), RR Dist, Telangana, India-501401, (Approved by AICTE, New Delhi, Affiliated to JNTU, Hyderabad.)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2016</td>
|
||||||
|
<td>3rd Young Women Scientist paper presentation at International Conference on Nanotechnology for Better Living, 2016 jointly organized by IIT Kanpur and NIT Srinagar at Srinagar, J&K, India on 25-29th May, 2016.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Research Excellence Award-2021, InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>InSc Young Researcher Award-2021 InSc (Institute of Scholars), Bangalore, Regd. under Ministry of MSME, Govt. Of India and ISO 9001:2015 certified.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2021</td>
|
||||||
|
<td>Women Researcher Award in the International Scientist Awards on Engineering, Science and Medicine by VDGOOD Professional Association</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2023</td>
|
||||||
|
<td>Asia’s Science, Technology and Research Awards 2023 (ASTRA 2023) Outstanding Researcher Award in Materials Science</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
<!-- <div class="tab-pane fade" id="v-pills-hand" role="tabpanel" aria-labelledby="v-pills-hand-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Membership</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
<th>Membership</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Moderator and Question Paper Setters of UG and PG Level CHEMISTRY COURSES IN various reputed Universities in India.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life Member at Indian Physical Society</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Life member of Indian Association for the Cultivation of Science, Jadavpur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>Reviewer of many reputed International peer-reviewed journals (Springer, Elsevier, Wiley)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>-</td>
|
||||||
|
<td>-</td>
|
||||||
|
<td>InSc Professional Member, Institute of Scholars, Department of Awards, Muddhinapalya Bengaluru-560091, Karnataka, India</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2017</td>
|
||||||
|
<td>2018</td>
|
||||||
|
<td>Editorial Board Member of Peer-reviewed International Journal: Materials Science Research India for 2017 and 2018</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div> -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
367
faculty/tumpa-saha.php
Normal file
367
faculty/tumpa-saha.php
Normal file
@@ -0,0 +1,367 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Tumpa Saha</h3>
|
||||||
|
<p class="" style="font-weight: 500;">SACT-2</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc. (Honours), M.Sc. Ph.d.</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:tumpa.anthro@sreechaitanyacollege.ac.in" class="fw-bold">tumpa.anthro@sreechaitanyacollege.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9332685845</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Anthropology (Human Genetics)</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>SL NO.</th>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>Marks</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>B.Sc. Anthropology (H)</td>
|
||||||
|
<td>2006</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>66.37%</td>
|
||||||
|
<td>Calcutta University</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>M.Sc. Anthropology</td>
|
||||||
|
<td>2008</td>
|
||||||
|
<td>Anthropology</td>
|
||||||
|
<td>63.03%</td>
|
||||||
|
<td>Vidyasagar University</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Sengupta, K., Karmakar, B., Roy, S., Kaur, A. & Gupta Bhattacharya, S.</td>
|
||||||
|
<td>Analysing airborne fungal concentration in Kolkata, India: temporal distribution, the effect of atmospheric parameters and health impact</td>
|
||||||
|
<td>Air Quality, Atmosphere & Health</td>
|
||||||
|
<td>16</td>
|
||||||
|
<td>963–984</td>
|
||||||
|
<td>2023</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Kaur, A.</td>
|
||||||
|
<td>Assessment of airborne fungal allergens: Biochemical & Immunoproteomic approach: A review</td>
|
||||||
|
<td>Plant Archives</td>
|
||||||
|
<td>21</td>
|
||||||
|
<td>2428-2432</td>
|
||||||
|
<td>2021</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Chakraborty, P., Roy, A., & Kaur, A.</td>
|
||||||
|
<td>Effect of airborne grass pollen and PM 2.5 level on anti-allergic respiratory medication sale in the city of Howrah, India.</td>
|
||||||
|
<td>Indian Journal of Aerobiology</td>
|
||||||
|
<td>33</td>
|
||||||
|
<td>17-23</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>Kaur, A., Karmakar, B., & Sarkar, M.B.</td>
|
||||||
|
<td>Enumerating aeromycota in a suburban area of West Bengal, with reference to meteorological factors and health impact</td>
|
||||||
|
<td>Journal of the Botanical Society of Bengal</td>
|
||||||
|
<td>74(2)</td>
|
||||||
|
<td>80-90</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5.</td>
|
||||||
|
<td>Karmakar, B., Sengupta, K., Kaur, A., Roy, A. & Gupta Bhattacharya, S.</td>
|
||||||
|
<td>Fungal bio-aerosol in multiple micro-environments from Eastern India: source, distribution, and health hazards</td>
|
||||||
|
<td>SN Applied Sciences</td>
|
||||||
|
<td>2</td>
|
||||||
|
<td>565</td>
|
||||||
|
<td>2020</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Orientation Program</td>
|
||||||
|
<td>University Grants Commission, University of Calcutta</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Refresher Course in Life Science</td>
|
||||||
|
<td>University Grants Commission, University of Calcutta</td>
|
||||||
|
<td>2011</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3.</td>
|
||||||
|
<td>Refresher Course in Life Science</td>
|
||||||
|
<td>University Grants Commission, University of Calcutta</td>
|
||||||
|
<td>2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4.</td>
|
||||||
|
<td>UGC-sponsored workshop</td>
|
||||||
|
<td>University Grants Commission, University of Calcutta</td>
|
||||||
|
<td>2019</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>.</td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subjects (Paper with Code) Taught</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>ANTGCORO1T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>ANTGCORO1P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>ANTGCORO2T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>ANTGCORO2P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>ANTGCORO3T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>ANTGCORO3P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>ANTGCORO4T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>ANTGDSCO2T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>ANTGDSCO2P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>ANTGDSEO1T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>ANTACOR11T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>ANTMIN101T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>ANTMIN101P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>ANTMIN202T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>ANTMIN202P</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>16</td>
|
||||||
|
<td>ANTMIN303T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>17</td>
|
||||||
|
<td>ANTMIN303P</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
323
faculty/utpal-dasgupta.php
Normal file
323
faculty/utpal-dasgupta.php
Normal file
@@ -0,0 +1,323 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Utpal Dasgupta</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Associate Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc, M.Sc, M.Phil, B.Ed, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:utpal.maths@scc.ac.in" class="fw-bold">utpal.maths@scc.ac.in</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9432076550</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Algebra </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Algebra, Hyperstructure Theory, Graph Theory</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc.</td>
|
||||||
|
<td>1985</td>
|
||||||
|
<td>Mathematics (Hons), Physics, Chemistry</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>1989</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Phil.</td>
|
||||||
|
<td>1991</td>
|
||||||
|
<td>Advance Algebra</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>B.Ed.</td>
|
||||||
|
<td>1992</td>
|
||||||
|
<td>Education</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2013</td>
|
||||||
|
<td>Hyperstructure Theory</td>
|
||||||
|
<td>University of Calcutta</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Lecturer in Mathematics</td>
|
||||||
|
<td>Raja Rammohun Ray Mahavidyalaya, Hooghly</td>
|
||||||
|
<td>01.08.1998</td>
|
||||||
|
<td>31.03.2000</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Lecturer in Mathematics</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.04.2000</td>
|
||||||
|
<td>31.07.2003</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Sr. Lecturer in Mathematics</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.08.2003</td>
|
||||||
|
<td>31.07.2008</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Selection Grade Lecturer in Mathematics</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.08.2008</td>
|
||||||
|
<td>31.07.2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Assistant Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.08.2009</td>
|
||||||
|
<td>31.10.2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>Associate Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>01.11.2012</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table >
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>Manabendranath Mukherjee, Parthasarathi Mukhopadhyay, Srimanta Sinha Roy, Utpal Dasgupta</td>
|
||||||
|
<td>Rudiments of Mathematics</td>
|
||||||
|
<td>----</td>
|
||||||
|
<td>Vol 1, 2, 3</td>
|
||||||
|
<td>940, 886, 950</td>
|
||||||
|
<td>2005, 2006, 2006</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2.</td>
|
||||||
|
<td>Manabendranath Mukherjee, Parthasarathi Mukhopadhyay, Srimanta Sinha Roy, Utpal Dasgupta</td>
|
||||||
|
<td>Prarambhik ganit</td>
|
||||||
|
<td>----</td>
|
||||||
|
<td>Vol 1, 2, 3</td>
|
||||||
|
<td>945, 876</td>
|
||||||
|
<td>2005, 2006</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Refresher Course</td>
|
||||||
|
<td>Department of Pure Mathematics</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1.</td>
|
||||||
|
<td>T K Dutta, Utpal Dasgupta</td>
|
||||||
|
<td>Primitive Gamma Semiring</td>
|
||||||
|
<td>The Third International Conference on Information (Info’2004)</td>
|
||||||
|
<td>Hosei University, Tokyo, Japan</td>
|
||||||
|
<td>International</td>
|
||||||
|
<td>2004</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Subject (Paper with Code)</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>MTMACOR12T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>MTMADSE05T</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>MTMDSC101T</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
435
faculty/uttam-das.php
Normal file
435
faculty/uttam-das.php
Normal file
@@ -0,0 +1,435 @@
|
|||||||
|
<?php
|
||||||
|
require('../.hta_config/env.php');
|
||||||
|
require('../.hta_header.php');
|
||||||
|
?>
|
||||||
|
<div class="container mx-auto">
|
||||||
|
<div class="d-flex flex-column flex-md-row mt-5 gap-5">
|
||||||
|
<div class="border border-2 border-dark rounded" style="height: fit-content; width: fit-content;">
|
||||||
|
<img src="/assets/img.png" alt="" style="background-color: #1b07e9; width: 200px;">
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<h3 class="text-uppercase fw-bold">Dr. Uttam Das</h3>
|
||||||
|
<p class="" style="font-weight: 500;">Associate Professor</p>
|
||||||
|
<p style="margin-top: -10px;">B.Sc (H), M.Sc, Ph.D</p>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: -10px;">
|
||||||
|
<svg width="20px" height="20px" viewBox="0 0 24 24" id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><defs><style>.cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;}</style></defs><polyline class="cls-1" points="18.68 6.97 22.5 10.09 22.5 22.5 1.5 22.5 1.5 10.09 5.32 6.97"></polyline><polyline class="cls-1" points="1.5 11.04 12 18.68 22.5 11.04"></polyline><polyline class="cls-1" points="5.32 13.91 5.32 1.5 18.68 1.5 18.68 13.91"></polyline><line class="cls-1" x1="8.18" y1="5.32" x2="15.82" y2="5.32"></line><line class="cls-1" x1="8.18" y1="9.14" x2="15.82" y2="9.14"></line><line class="cls-1" x1="8.18" y1="12.95" x2="15.82" y2="12.95"></line></g></svg>
|
||||||
|
<a href="mailto:uttamrupam2014@gmail.com" class="fw-bold">uttamrupam2014@gmail.com</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-1" style="margin-top: 5px;">
|
||||||
|
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M14 2C14 2 16.2 2.2 19 5C21.8 7.8 22 10 22 10" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M14.207 5.53564C14.207 5.53564 15.197 5.81849 16.6819 7.30341C18.1668 8.78834 18.4497 9.77829 18.4497 9.77829" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> <path d="M10.0376 5.31617L10.6866 6.4791C11.2723 7.52858 11.0372 8.90532 10.1147 9.8278C10.1147 9.8278 10.1147 9.8278 10.1147 9.8278C10.1146 9.82792 8.99588 10.9468 11.0245 12.9755C13.0525 15.0035 14.1714 13.8861 14.1722 13.8853C14.1722 13.8853 14.1722 13.8853 14.1722 13.8853C15.0947 12.9628 16.4714 12.7277 17.5209 13.3134L18.6838 13.9624C20.2686 14.8468 20.4557 17.0692 19.0628 18.4622C18.2258 19.2992 17.2004 19.9505 16.0669 19.9934C14.1588 20.0658 10.9183 19.5829 7.6677 16.3323C4.41713 13.0817 3.93421 9.84122 4.00655 7.93309C4.04952 6.7996 4.7008 5.77423 5.53781 4.93723C6.93076 3.54428 9.15317 3.73144 10.0376 5.31617Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round"></path> </g></svg>
|
||||||
|
<a class="fw-bold">9434643228</a>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row gap-3" style="place-items: center;">
|
||||||
|
<svg fill="#000000" width="30px" height="30px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M2,14H5V11H2Zm9,0h3V11H11ZM2,5H5V2H2Zm9-3V5h3V2ZM6.5,5h3V2h-3Zm0,9h3V11h-3ZM11,9.5h3v-3H11Zm-4.5,0h3v-3h-3ZM2,9.5H5v-3H2Z"></path> </g> </g></svg>
|
||||||
|
<h4 class="text-uppercase" style="font-weight: 600;">AREA OF INTEREST</h4>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li style="font-size: 15px;"></li>
|
||||||
|
<h2 style="font-size: 15px;">Area of Specialization: Functional Analysis </h2>
|
||||||
|
<h2 style="font-size: 15px;">Area of Research and Interest: Bio-Mathematics</h2>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column flex-md-row align-items-start">
|
||||||
|
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link active" id="v-pills-education-tab" data-bs-toggle="pill" data-bs-target="#v-pills-education" type="button" role="tab" aria-controls="v-pills-education" aria-selected="true" style="white-space: nowrap; place-items: center; background-color: #966650;"><img src="/assets/diploma.svg" alt="" />Academic Qualification</button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-work-tab" data-bs-toggle="pill" data-bs-target="#v-pills-work" type="button" role="tab" aria-controls="v-pills-work" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/graph.svg" alt="" />Work Experience </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-awards-tab" data-bs-toggle="pill" data-bs-target="#v-pills-awards" type="button" role="tab" aria-controls="v-pills-awards" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/award.svg" alt="" />Awards </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-book-tab" data-bs-toggle="pill" data-bs-target="#v-pills-book" type="button" role="tab" aria-controls="v-pills-book" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Publication </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-course-tab" data-bs-toggle="pill" data-bs-target="#v-pills-course" type="button" role="tab" aria-controls="v-pills-course" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/course.svg" alt="" />Courses </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-project-tab" data-bs-toggle="pill" data-bs-target="#v-pills-project" type="button" role="tab" aria-controls="v-pills-project" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/project.svg" alt="" />Projects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-seminar-tab" data-bs-toggle="pill" data-bs-target="#v-pills-seminar" type="button" role="tab" aria-controls="v-pills-seminar" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/seminar.svg" alt="" />Seminar Attedance </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-subjects" type="button" role="tab" aria-controls="v-pills-subjects" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/book.svg" alt="" />Subjects </button>
|
||||||
|
<button class="d-flex flex-row gap-4 nav-link" id="v-pills-subjects-tab" data-bs-toggle="pill" data-bs-target="#v-pills-curricular" type="button" role="tab" aria-controls="v-pills-curricular" aria-selected="false" style="white-space: nowrap; place-items: center; background-color: #966650; border-bottom: 1px solid #fff"><img src="/assets/curri.svg" alt="" />Extra Curricular </button>
|
||||||
|
</div>
|
||||||
|
<div class="tab-content" id="v-pills-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-education" role="tabpanel" aria-labelledby="v-pills-education-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Academic Qualification</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Degree</th>
|
||||||
|
<th>Year</th>
|
||||||
|
<th>Subject</th>
|
||||||
|
<th>University/Institution</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>B.Sc. (H)</td>
|
||||||
|
<td>1996</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>The University of Burdwan</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>M.Sc.</td>
|
||||||
|
<td>1998</td>
|
||||||
|
<td>Pure Mathematics</td>
|
||||||
|
<td>The University of Burdwan</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Ph.D.</td>
|
||||||
|
<td>2015</td>
|
||||||
|
<td>Mathematics</td>
|
||||||
|
<td>Indian Institute of Engineering Science and Technology, Shibpur</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-work" role="tabpanel" aria-labelledby="v-pills-work-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Work Experience</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Positions Held</th>
|
||||||
|
<th>Name of the Institute</th>
|
||||||
|
<th>From</th>
|
||||||
|
<th>To</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Lecturer (Assistant Professor - Stage I)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>20.05.2003</td>
|
||||||
|
<td>19.05.2009</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Assistant Professor (Stage II)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>20.05.2009</td>
|
||||||
|
<td>19.05.2014</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Assistant Professor (Stage III)</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>20.05.2014</td>
|
||||||
|
<td>19.05.2017</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Associate Professor</td>
|
||||||
|
<td>Sree Chaitanya College, Habra</td>
|
||||||
|
<td>20.05.2017</td>
|
||||||
|
<td>Till date</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<div class="tab-pane fade show active" id="v-pills-awards" role="tabpanel" aria-labelledby="v-pills-awards-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Awards</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Name of Award</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-project" role="tabpanel" aria-labelledby="v-pills-project-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Projects</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Cost in Lakh</th>
|
||||||
|
<th>Start Date</th>
|
||||||
|
<th>End Date</th>
|
||||||
|
<th>Role as PI/Co-PI</th>
|
||||||
|
<th>Agency</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Mathematical Modeling and analysis for the management and conservation of fisheries</td>
|
||||||
|
<td>2.95</td>
|
||||||
|
<td>28.03.2017</td>
|
||||||
|
<td>27.03.2019</td>
|
||||||
|
<td>PI</td>
|
||||||
|
<td>UGC</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-book" role="tabpanel" aria-labelledby="v-pills-book-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Publication</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Name of Journal</th>
|
||||||
|
<th>Volume</th>
|
||||||
|
<th>Page</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Tapan Kumar Kar and Uttam Das</td>
|
||||||
|
<td>Singularity induced bifurcation and control of a bioeconomic model of an exploited Prey-predator system</td>
|
||||||
|
<td>Canadian Applied Mathematics Quarterly</td>
|
||||||
|
<td>Vol. 20, No. 3</td>
|
||||||
|
<td>355-373</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Uttam Das, Tapan Kumar Kar and Soovoojeet Jana</td>
|
||||||
|
<td>Dynamical behaviour of a delayed stage-structured predator–prey model with nonmonotonic functional response</td>
|
||||||
|
<td>International Journal of Dynamics and Control</td>
|
||||||
|
<td>Vol. 3, No. 3</td>
|
||||||
|
<td>225-238</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Soovoojeet Jana, Srabani Guria, Uttam Das, Tapan Kumar Kar and Abhijit Ghorai</td>
|
||||||
|
<td>Effect of harvesting and infection on predator in a prey-predator system</td>
|
||||||
|
<td>Nonlinear Dynamics (Springer)</td>
|
||||||
|
<td>Vol. 81</td>
|
||||||
|
<td>917-930</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-course" role="tabpanel" aria-labelledby="v-pills-course-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Courses</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No</th>
|
||||||
|
<th>Name of Course</th>
|
||||||
|
<th>Awarding Agency</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Orientation Programme</td>
|
||||||
|
<td>UGC (ASC, The University of Burdwan)</td>
|
||||||
|
<td>2006</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Refreshers Courses</td>
|
||||||
|
<td>UGC (ASC, University of Calcutta)</td>
|
||||||
|
<td>2007</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>Refreshers Courses</td>
|
||||||
|
<td>UGC (ASC, University of Calcutta)</td>
|
||||||
|
<td>2010</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>Refreshers Courses</td>
|
||||||
|
<td>UGC (ASC, University of Calcutta)</td>
|
||||||
|
<td>2012</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>Refreshers Courses</td>
|
||||||
|
<td>UGC (ASC, Jadavpur University)</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-seminar" role="tabpanel" aria-labelledby="v-pills-seminar-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Seminar Attedance</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Author(s)</th>
|
||||||
|
<th>Title of the Paper Presented</th>
|
||||||
|
<th>Title of the Conference/ Seminar</th>
|
||||||
|
<th>Organized by</th>
|
||||||
|
<th>Level</th>
|
||||||
|
<th>Year</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>Uttam Das, Tapan Kumar Kar, and Ujjwal Kumar Pahari</td>
|
||||||
|
<td>Global dynamics of an exploited prey-predator model with constant prey refuge</td>
|
||||||
|
<td>National Seminar on Analysis and Application</td>
|
||||||
|
<td>Department of Mathematics, West Bengal State University, Barasat, India</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2016</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>Tapan Kumar Kar and Uttam Das</td>
|
||||||
|
<td>Regulation of an exploited prey-predator system: A dynamic reaction model</td>
|
||||||
|
<td>Recent Trends in Applied Mathematics and its Computational Aspects</td>
|
||||||
|
<td>Department of Applied Mathematics, University of Calcutta</td>
|
||||||
|
<td>National</td>
|
||||||
|
<td>2015</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-subjects" role="tabpanel" aria-labelledby="v-pills-subjects-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Subjects</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>H/G/Major/Minor</th>
|
||||||
|
<th>Paper</th>
|
||||||
|
<th>Code</th>
|
||||||
|
<th>CBCS/NEP</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>Paper-1</td>
|
||||||
|
<td>MTMACOR01T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>Paper-4</td>
|
||||||
|
<td>MTMACOR04T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>Paper-5</td>
|
||||||
|
<td>MTMACOR05T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>Paper-9</td>
|
||||||
|
<td>MTMACOR09T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>5</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>Paper-DSE-1</td>
|
||||||
|
<td>MTMADSE01T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>H</td>
|
||||||
|
<td>Paper-13</td>
|
||||||
|
<td>MTMACOR13T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>G</td>
|
||||||
|
<td>Paper-1</td>
|
||||||
|
<td>MTMHGEC01T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>G</td>
|
||||||
|
<td>Paper-2</td>
|
||||||
|
<td>MTMHGEC02T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>9</td>
|
||||||
|
<td>G</td>
|
||||||
|
<td>Paper-3</td>
|
||||||
|
<td>MTMHGEC03T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>10</td>
|
||||||
|
<td>G</td>
|
||||||
|
<td>Paper-4</td>
|
||||||
|
<td>MTMHGEC04T</td>
|
||||||
|
<td>CBCS</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>11</td>
|
||||||
|
<td>Major</td>
|
||||||
|
<td>Paper-2</td>
|
||||||
|
<td>MTMDSC202T</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>12</td>
|
||||||
|
<td>Major</td>
|
||||||
|
<td>Paper-3</td>
|
||||||
|
<td>MTMDSC303T</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>13</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
<td>Paper-1</td>
|
||||||
|
<td>MTMMIN101T</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>14</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
<td>Paper-2</td>
|
||||||
|
<td>MTMMIN202T</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>15</td>
|
||||||
|
<td>Minor</td>
|
||||||
|
<td>Paper-3</td>
|
||||||
|
<td>MTMMIN303T</td>
|
||||||
|
<td>NEP</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="v-pills-curricular" role="tabpanel" aria-labelledby="v-pills-curricular-tab">
|
||||||
|
<h3 class="fw-bold text-uppercase">Extra Curricular</h3>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>Sl. No.</th>
|
||||||
|
<th>Activities</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
Reference in New Issue
Block a user