-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsessions.html
More file actions
181 lines (158 loc) · 6.38 KB
/
Copy pathsessions.html
File metadata and controls
181 lines (158 loc) · 6.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Special Sessions</title>
<link rel="icon" href="img/event_logo.png">
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 20px;
background-color: #f8f9fa;
}
.container {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h2,
h3 {
color: #0056b3;
}
.highlight {
color: red;
font-weight: bold;
}
.session {
border-top: 2px solid #0056b3;
padding-top: 10px;
margin-top: 10px;
}
.top-label {
color: red;
font-weight: bold;
}
.speakers-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
/* Ensures responsiveness */
gap: 20px;
}
.speaker-card {
text-align: center;
background: white;
border: 1px solid gray;
border-radius: 10px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
overflow: hidden;
width: 250px;
}
.speaker-card img {
width: 100%;
height: 300px;
object-fit: cover;
}
.speaker-card p {
margin: 10px 0;
font-size: 16px;
}
.linkedin-icon {
color: gray;
text-decoration: none;
font-size: 20px;
}
.linkedin-icon:hover {
color: blue;
}
</style>
</head>
<body>
<div class="container">
<h2>Special Session(s)</h2><br>
<p class="highlight">Send the proposals for the Special Sessions to <a
href="rcsc2025@gmail.com">rcsc2025@gmail.com</a> with the following details:</p><br>
<ul>
<li>Title of the special session:</li>
<li>Names of proposers:</li>
<li>Affiliations:</li>
<li>Email addresses:</li>
<li>Description of the special session:
</li>
</ul>
<br>
<marquee class="py-4 bg-gray-400 text-xl text-white">
Last Date of Proposal: 5th March 2025
</marquee>
<br>
<br>
<h3>Selected Special Sessions</h3>
<p><a href="#session1">Emerging Tools and Techniques in Healthcare</a></p><br>
<div class="session" id="session1">
<h3>Special Session #1 </h3><br>
<p><strong>Title of the Special Session:</strong><br>
Emerging Tools and Techniques in Healthcare</p>
<br>
<h3>Session Chairs</h3><br>
<div class="speakers-container">
<!-- Speaker 1 -->
<div class="speaker-card">
<img src="img/a.jpeg" alt="Prof. Xiao-Zhi Gao">
<p><strong>Prof. Varshini Karthik</strong></p>
<p>SRM Institute of Science and Technology, Chennai</p>
<a href="#" class="linkedin-icon"><i class="fab fa-linkedin"></i></a>
</div>
<!-- Speaker 2 -->
<div class="speaker-card">
<img src="img/b.jpeg" alt="Prof. Shubhendu Bhasin">
<p><strong>Dr. Ashok Kumar D</strong></p>
<p>SRM Institute of Science and Technology, Chennai</p>
<a href="#" class="linkedin-icon"><i class="fab fa-linkedin"></i></a>
</div>
<!-- Speaker 3 -->
<div class="speaker-card">
<img src="img/c.jpeg" alt="Prof. Nishchal K. Verma">
<p><strong>Dr. Rohit Gupta</strong></p>
<p>SRM Institute of Science and Technology, Chennai</p>
<a href="#" class="linkedin-icon"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<br>
<p><strong>Email addresses:</strong><br>
<a href="mailto:varshink@srmist.edu.in">varshink@srmist.edu.in</a>,
<a href="mailto:ashokd@srmist.edu.in">ashokd@srmist.edu.in</a>,
<a href="mailto:rohitg@srmist.edu.in">rohitg@srmist.edu.in</a>
</p>
<br>
<p><strong>Description of the special Session:</strong><br>
The integration of emerging tools and techniques in healthcare is
revolutionizing medical diagnostics, patient monitoring, and treatment planning. This special
session aims to provide a platform for researchers, academicians, and industry professionals to
present their latest findings in biomedical image processing, biomedical signal processing,
wearable healthcare technologies, and the application of AI, machine learning, and deep
learning in healthcare. Recent advancements in artificial intelligence and deep learning have
significantly enhanced healthcare applications, enabling more accurate diagnostics, predictive
analytics, and personalized treatments. The proposed session will highlight novel
methodologies, algorithms, and real-world applications that contribute to improving patient
outcomes and healthcare efficiency
</p>
<br>
<p><strong>Scope of the Special Session</strong><br>
• Biomedical image processing and segmentation.<br>
• Biomedical signal processing and analysis.<br>
• AI-driven diagnostics and healthcare solutions.<br>
• Wearable healthcare monitoring and rehabilitation technologies.<br>
• Machine learning for disease prediction and risk assessment.<br>
• Deep learning applications in medical imaging and bioinformatics.<br>
• Internet of Things (IoT) and smart healthcare systems.<br>
</p>
<br>
</div>
</div>
</body>
</html>