-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguidlines.html
More file actions
705 lines (625 loc) · 32.7 KB
/
Copy pathguidlines.html
File metadata and controls
705 lines (625 loc) · 32.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guidelines</title>
<link rel="icon" href="img/event_logo.png">
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<link rel="stylesheet" href="./src/styles.css">
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script type="text/javascript" src="https://cdn.emailjs.com/sdk/3.6.2/email.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
/* General Styles for Dropdowns */
.dropdown-menu {
display: none; /* Hide dropdown by default */
}
.dropdown-menu.show {
display: block; /* Show dropdown when active */
}
@media (max-width: 768px) {
.dropdown-menu {
position: absolute;
right: 0;
top: 100%;
min-width: 160px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-menu {
display: block;
}
.navbar-menu a {
display: block;
}
}
.highlight{
text-decoration: underline;
color: #0056b3;
}
.navbar {
background-color: #fff;
border-bottom: 1px solid #eaeaea;
}
.navbar a {
color: #333;
text-decoration: none;
}
.navbar a:hover {
color: #0056b3;
}
/* Footer Styles */
footer {
background-color: #333;
color: #fff;
padding: 20px 0;
}
footer a {
color: #007BFF;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: #0056b3;
}
.footer-links {
display: flex;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
}
.footer-links ul {
list-style: none;
padding: 0;
}
.footer-links ul li {
margin-bottom: 10px;
}
.footer-social-icons a {
color: #fff;
margin-right: 10px;
text-decoration: none;
font-size: 24px;
}
/* Additional styles to ensure consistency */
.content-wrapper {
padding: 20px;
background-color: #fff;
margin: 20px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
</style>
<link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<link rel="stylesheet" href="./src/styles.css">
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script type="module">
import preline from 'https://cdn.jsdelivr.net/npm/preline@2.3/+esm'
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<script>
function toggleContent(expandedId, button) {
const expandedContent = document.getElementById(expandedId);
if (expandedContent.classList.contains('hidden')) {
expandedContent.classList.remove('hidden');
button.textContent = "Read Less";
} else {
expandedContent.classList.add('hidden');
button.textContent = "Read More";
}
}
</script>
<style>
body {
font-family: 'Roboto', sans-serif;
color: #1b1d1f;
}
@keyframes soft-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}
.animate-soft-blink {
animation: soft-blink 1.5s infinite;
}
body::-webkit-scrollbar {
display: none;
}
.carousel {
width: 100%;
height: 300px;
background-color: #000;
margin-top: 20px;
}
.text-light {
font-weight: lighter;
}
.expand-transition {
transition: max-height 0.5s ease-out;
overflow: hidden;
}
.expand-transition.collapsed {
max-height: 0;
}
.expand-transition.expanded {
max-height: 1000px; /* Adjust based on content height */
}
.background-grid {
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
animation: grid-fade 10s ease-in-out infinite;
}
.code-animation {
font-family: 'Courier New', Courier, monospace;
white-space: pre;
overflow: hidden;
height: 100%;
color: rgba(255, 255, 255, 0.8);
animation: running-code 20s linear infinite;
display: flex;
flex-direction: column;
gap: 0;
padding-right: 20px;
box-sizing: border-box;
}
@keyframes scroll {
0% { transform: translateX(100%); }
100% { transform: translateX(-80%); }
}
.animate-scroll {
display: flex;
animation: scroll 12s linear infinite;
}
a {
pointer-events: auto;
}
header {
background: linear-gradient(to right, lightblue, white, lightblue);
}
header div {
white-space: nowrap;
}
@keyframes running-code {
0% {
transform: translateY(0);
}
100% {
transform: translateY(calc(-100% + 1em));
}
}
.custom-blur {
filter: blur(1.5px);
}
.overlay-image {
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 25%;
background: url('img/overlay.png') no-repeat center center;
background-size: cover;
opacity: 0.2;
pointer-events: none;
}
#dropdownNavbar {
z-index: 1000; /* Ensure it is on top */
}
#dropdownNavbar {
pointer-events: auto; /* Ensure pointer events are enabled */
}
.carousel {
width: 100%;
height: 300px;
background-color: black;
margin-top: 20px;
}
.text-light {
font-weight: lighter;
}
.animate-loop-scroll {
animation: loop-scroll 20s linear infinite;
}
@keyframes loop-scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
</style>
</head>
<body>
<!-- Main Navigation -->
<!-- Registration -->
<div id="default-modal" tabindex="-1" aria-hidden="true"
class="hidden overflow-y-auto overflow-x-hidden fixed top-0 right-0 left-0 z-50 justify-center items-center w-full md:inset-0 h-[calc(100%-1rem)] max-h-full">
<div class="relative p-4 w-full max-w-2xl max-h-full">
<!-- Modal content -->
<div class="relative bg-white rounded-lg shadow">
<!-- Modal header -->
<div class="flex items-center justify-between p-4 md:p-5 border-b rounded-t">
<h3 class="text-xl font-semibold text-gray-900">
Registration
</h3>
<button type="button"
class="text-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm w-8 h-8 ms-auto inline-flex justify-center items-center"
data-modal-hide="default-modal">
<svg class="w-3 h-3" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 14 14">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m1 1 6 6m0 0 6 6M7 7l6-6M7 7l-6 6" />
</svg>
<span class="sr-only">Close modal</span>
</button>
</div>
<!-- Modal body -->
<div class="p-4 md:p-5 space-y-4">
<div>
<h5 class="font-bold text-lg mb-2">Registration Fees:</h5>
<table class="table-auto text-sm border-collapse border border-gray-500 w-full">
<thead class="text-center text-base">
<tr>
<th class="border-2 border-gray-500 py-4">Category</th>
<th class="border-2 border-gray-500 py-4">Indian delegates<br>(in Rupees)</th>
<th class="border-2 border-gray-500 py-4">Foreign delegates<br>(in USD)</th>
</tr>
</thead>
<tbody>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Attendees</td>
<td class="border-2 border-gray-500 text-center">Rs. 3500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$80</td>
</tr>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Student/Research Scholars</td>
<td class="border-2 border-gray-500 text-center">Rs. 7500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$200</td>
</tr>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Faculty</td>
<td class="border-2 border-gray-500 text-center">Rs. 8500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$250</td>
</tr>
<tr>
<td class="border-2 border-gray-500 pl-4 py-1">Author from Industry</td>
<td class="border-2 border-gray-500 text-center">Rs. 9500 + 18% GST</td>
<td class="border-2 border-gray-500 text-center">$300</td>
</tr>
</tbody>
</table>
</div>
<div>
<h5 class="font-bold text-lg mb-2">Note:</h5>
<p class="text-sm text-gray-700 mb-2">The page limit for a full-length paper is 10 pages, with an extra page charge of Rs. 500 from the 11th page onwards.</p>
</div>
<div>
<h5 class="font-bold text-lg mb-2">Mode of Payment:</h5>
<p class="text-sm text-gray-700 mb-2">All payments should be made through online electronic
transfer in the account of conference with following detail:</p>
<div class="flex justify-center">
<table class="table-auto text-sm">
<tbody>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">Account Holder's Name</td>
<td class="border-b-2 border-gray-300 py-1">DIRECTOR NIT SIKKIM</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">Account No</td>
<td class="border-b-2 border-gray-300 py-1">31996269106</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">Branch</td>
<td class="border-b-2 border-gray-300 py-1">State Bank of India & Ravangla</td>
</tr>
<tr>
<td class="border-b-2 border-gray-300 pr-7 py-1 font-bold">IFSC Code</td>
<td class="border-b-2 border-gray-300 py-1">SBIN0007218</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Modal footer -->
<div class="flex items-center p-4 md:p-5 border-t border-gray-200 rounded-b dark:border-gray-600">
<a href="https://forms.gle/xy415makx6ebf1Dq5" target="_blank" rel="noopener noreferrer"
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Register
</a>
</div>
</div>
</div>
</div>
<!-- Header -->
<nav class="bg-white border-gray-200">
<div class="flex flex-wrap items-center justify-between mx-11 p-4">
<a href="#" class="flex items-center space-x-8 rtl:space-x-reverse">
<img src="img/event_logo.png" width="100" height="100" alt="Event Logo" />
<img src="img/college-logo.png" alt="College Logo" width="65" height="65">
</a>
<div class="hidden w-full md:block md:w-auto" id="navbar-multi-level">
<ul
class="flex flex-col font-medium p-4 md:p-0 mt-4 border border-gray-100 rounded-lg bg-gray-50 md:space-x-8 rtl:space-x-reverse md:flex-row md:mt-0 md:border-0 md:bg-white">
<li>
<a href="index.html" class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700" aria-current="page">Home</a>
</li>
<li>
<a href="index.html#aboutus"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">About</a>
</li>
<li>
<a href="index.html#committees"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">Committees</a>
</li>
<li>
<a href="index.html#speakers"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">Speakers</a>
</li>
<li>
<a href="index.html#callforsponser"
class="block py-4 px-3 text-gray-500 hover:bg-transparent hover:text-blue-700">Sponsorships</a>
</li>
<li>
<button id="dropdownNavbarLink1" data-dropdown-toggle="dropdownNavbar"
class="flex items-center justify-between w-full py-4 px-1 text-gray-500 hover:bg-transparent border-0 hover:text-blue-700">Program
<svg class="w-2.5 h-2.5 ms-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="m1 1 4 4 4-4" />
</svg>
</button>
<!-- Dropdown menu -->
<div id="dropdownNavbar"
class="z-10 hidden font-normal bg-white divide-y divide-gray-100 rounded-lg shadow w-64">
<ul class="py-2 text-sm text-gray-700 space-y-1">
<li><a href="Files/RCSC Program Schedule.pdf" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">RCSC'2025 Program Schedule</a></li>
<li><a href="index.html#papers1" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Call for Papers</a></li>
<li><a href="./Files/Poster.pptx" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Call for Poster</a></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSf9_ZGWvDPY5czm_0tbTbUC8PejVLDpMo3HIFH62x6RbrVTSQ/viewform"
target="_blank" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
Call for Reviewer
</a></li>
<li><a href="index.html#callforsponser" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Call for Sponsorship</a></li>
<li><a href="index.html#guidlines.html" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Guidelines for Authors</a></li>
<li><a href="index.html#imp_dates" class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">Important Dates</a></li>
</ul>
</div>
</li>
<li>
<button id="dropdownNavbarLink2" data-dropdown-toggle="dropdownNavbar2"
class="flex items-center justify-between w-full py-4 px-1 text-gray-500 hover:bg-transparent border-0 hover:text-blue-700">Contact
<svg class="w-2.5 h-2.5 ms-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="m1 1 4 4 4-4" />
</svg>
</button>
<!-- Dropdown menu -->
<div id="dropdownNavbar2"
class="z-10 hidden font-normal bg-white divide-y divide-gray-100 rounded-lg shadow w-64">
<ul class="py-2 text-sm text-gray-700 space-y-1">
<li>
<a href="index.html#howtoreach"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
Contact Us
</a>
</li>
<li>
<a href="index.html#howtoreach"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
How to Reach Us
</a>
</li>
</ul>
</div>
</li>
<li>
<button id="dropdownNavbarLink3" data-dropdown-toggle="dropdownNavbar3"
class="flex items-center justify-between w-full py-4 px-1 text-gray-500 hover:bg-transparent border-0 hover:text-blue-700">Downloads
<svg class="w-2.5 h-2.5 ms-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 10 6">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" d="m1 1 4 4 4-4" />
</svg>
</button>
<!-- Dropdown menu -->
<div id="dropdownNavbar3" class="z-10 hidden font-normal bg-white divide-y divide-gray-100 rounded-lg shadow w-64">
<ul class="py-2 text-sm text-gray-700 space-y-1" aria-labelledby="dropdownLargeButton">
<li>
<a href="#" download="Conference_Brochure.pdf"
class="block px-4 py-2 hover:bg-gray-100 transition-colors duration-300">
Brochure
</a>
</li>
</ul>
</div>
</li>
<li>
<button data-modal-target="default-modal" data-modal-toggle="default-modal"
class="block py-2 px-3 text-gray-900 font-bold rounded-full border-4 border-blue-500 hover:bg-blue-500 hover:text-white transition ease-in-out delay-150">Registration</button>
</li>
</ul>
</div>
</div>
</nav>
<marquee class="py-4 bg-gray-400 text-xl text-white">
Conference Dates: 1st-3rd May 2025
<a href="Files/RCSC Program Schedule.pdf" target="_blank" class="px-3 py-1 text-white font-semibold hover:text-yellow-300 transition animate-soft-blink">
RCSC'2025 Program Schedule
</a>
</marquee>
<table width="100%" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="74%" valign="top">
<table width="100%" height="178" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="67%" height="180" valign="top">
<table width="99%" height="31" border="0" cellpadding="0" cellspacing="0" class="botm-border">
<tr>
<h1 style="font-size: 24px; font-weight: bold; text-align: center;">Paper Submission</h1>
</tr>
</table>
<p><strong><u style="font-size: 18px;">Manuscript Style Information:</u></strong></p>
<p align="justify">Authors should submit Full papers, not just an Abstract. Only papers prepared in PDF format will be accepted. Paper Length: Up to 10 pages, including figures, tables & references. Paper Formatting and Margins: Please carefully follow the template for specifications. No page numbers please. The same will be inserted during proceedings. <b>Restrict the Similarity Index below 15% and content overlapping shall be below 3%.</b></p>
<p align="justify"><b>Please ensure that all the figures are of 300 DPI resolutions.</b></p>
<h2 style="color: blue; text-align: center;">Important Instructions for AI-Generated Text such as ChatGPT</h2>
<p align="justify">The use of content generated by artificial intelligence (AI) in an article in any form (text, figures, images, and code) shall be clearly disclosed in the acknowledgments section of the paper submitted for review. The AI system used shall be identified, and specific sections of the article that use AI-generated content shall be identified and accompanied by a brief explanation regarding the level at which the AI system was used to generate the content. Failing which paper shall be directly rejected without any reviewer comments.</p>
<p align="justify"><strong>For Latex users:</strong> Latex users need not submit an MS word file. Instead, they need to include the source files in a folder and include this folder in the camera-ready zip file submitted.</p>
<strong>Please refer to the author templates given below:</strong>
<table align="center">
<tr align="center">
<td width="50%">MS Word template:</td>
<td width="50%"><a href="./Files/splnproc1703.zip" class="highlight">Doc Template</a></td>
</tr>
<tr align="center">
<td width="50%">LaTex Formatting Macros:</td>
<td width="50%"><a href="./Files/ProcSci_TeX.zip" class="highlight">Tex Template</a></td>
</tr>
<tr align="center">
<td width="50%">Copyright/Author's Agreement/Consent Form:</td>
<td width="50%"><a href="#" class="highlight">Copyright Form</a></td>
</tr>
</table>
<p><strong>Submission System:</strong></p>
<p align="justify">You can log in <b>Microsoft's Conference Management Toolkit</b> using your Username and Password. From the top menu that appears below <b>Author Console</b> Click "Create new submission" and choose the Track to submit the paper. Finally, you fill out all the necessary information concerning the submission, upload the paper, and click on "submit".</p>
<center><a href="https://cmt3.research.microsoft.com/RCSC2025/" target="blank"><img src="img/CMT_logo.png" alt="CMT Logo"></a></center>
<p align="justify">Papers must be submitted within the deadline given, and electronic submission in PDF is required. The page limit for a full-length paper is 10 pages, with an extra page charge of Rs. 500 from the 11th page onwards. Short papers describing novel research visions, work-in-progress, or less mature results are also welcome, with a minimum limit of 5 pages.</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
<footer class="bg-gray-700">
<div class="mx-auto w-full p-4 py-6 px-16">
<div class="flex justify-between">
<div>
<div class="flex items-center mb-8">
<img src="img/event_logo.png" class="h-14 me-3" alt="Event Logo" />
<span class="self-center text-2xl font-semibold whitespace-nowrap text-gray-800">RCSC' 2024</span>
</div>
<p class="text-white mb-2">Organized by National Institute Of Technology Sikkim</p>
<p class="text-white text-lg"><b>Venue</b> - MP Hall, NIT Sikkim, Ravangla, South Sikkim – 737139,
India</p>
<p class="text-white font-bold text-lg mt-4">Email - <a href="#"
class="font-normal">bambahadursinha@nitsikkim.ac.in</a></p>
</div>
<div class="flex gap-20">
<div>
<h2 class="mb-6 text-sm font-semibold text-gray-900 uppercase ">Useful Links</h2>
<ul class="text-gray-400 font-medium">
<li class="mb-1">
<a href="index.html" class="hover:underline text-gray-400">Home</a>
</li>
<li class="mb-1">
<a href="index.html#aboutus" class="hover:underline text-gray-400">About Us</a>
</li>
<li class="mb-1">
<a href="index.html#callforpapers" class="hover:underline text-gray-400">Call for Papers</a>
</li>
<li class="mb-1">
<a href="index.html#imp_dates" class="hover:underline text-gray-400">Important Dates</a>
</li>
</ul>
<h2 class="mb-6 text-sm font-semibold text-gray-900 uppercase mt-8">Social Media
</h2>
<div class="grid grid-cols-2 gap-4">
<a href="#" class="text-gray-400 hover:text-[#1877F2] fa-xl"><i
class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-[#1DA1F2] fa-xl"><i
class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-red-500 fa-xl"><i
class="fab fa-youtube"></i></a>
<a href="#" class="text-gray-400 hover:text-[#E1306c] fa-xl"><i
class="fab fa-instagram"></i></a>
</div>
</div>
<div class="w-[500px]">
<h2 class="mb-6 text-sm font-semibold text-white uppercase">Contact Us</h2>
<form id="contactForm">
<div class="mb-4">
<label for="email" class="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300">
Your email
</label>
<input type="email" id="email" name="email"
class="shadow-sm bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-primary-500 focus:border-primary-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:focus:ring-primary-500 dark:focus:border-primary-500 dark:shadow-sm-light"
placeholder="xyz@gmail.com" required>
</div>
<div class="sm:col-span-2">
<label for="message" class="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-400">
Your message
</label>
<textarea id="message" name="message" rows="6"
class="block p-2.5 w-full text-sm text-gray-900 bg-gray-50 rounded-lg shadow-sm border border-gray-300 focus:ring-primary-500 focus:border-primary-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:focus:ring-primary-500 dark:focus:border-primary-500"
placeholder="Leave a comment..."></textarea>
</div>
<button type="submit"
class="mt-4 px-4 py-2 text-white bg-blue-500 hover:bg-blue-600 rounded-lg focus:ring-4 focus:ring-blue-300">
Submit
</button>
</form>
</div>
</div>
</div>
<hr class="my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8" />
<div class="sm:flex sm:items-center sm:justify-between">
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2024 <a
href="https://flowbite.com/" class="hover:underline text-gray-400">vishwa™</a>. All Rights Reserved.
</span>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.js">
function toggleContent(id) {
const element = document.getElementById(id);
element.classList.toggle('hidden');
}
</script>
<script>
document.addEventListener('DOMContentLoaded', () => {
// Set default section to show
const defaultSection = '1'; // Change this to the ID of the default section if needed
// Hide all divs initially
const divs = document.querySelectorAll('.content');
const btns = document.querySelectorAll('.bttn');
divs.forEach(div => div.classList.add('hidden'));
btns.forEach(btn => btn.classList.remove('bg-blue-300'));
// Show the default section
const defaultDiv = document.getElementById(`div${defaultSection}`);
if (defaultDiv) {
defaultDiv.classList.remove('hidden');
document.getElementById(`bttn${defaultSection}`).classList.add('bg-blue-300');
}
});
function showDiv(divId) {
// Hide all divs
const divs = document.querySelectorAll('.content');
const btns = document.querySelectorAll('.bttn');
divs.forEach(div => div.classList.add('hidden'));
btns.forEach(btn => btn.classList.remove('bg-blue-300'));
// Show the selected div
document.getElementById(`div${divId}`).classList.remove('hidden');
document.getElementById(`bttn${divId}`).classList.add('bg-blue-300');
}
</script>
</body>
</html>