-
Notifications
You must be signed in to change notification settings - Fork 5
/
energy&environmental.html
931 lines (815 loc) · 26.8 KB
/
energy&environmental.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>B. Tech | Computer Science & Engineering</title>
<link rel="stylesheet" href="Btech.css">
</head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header, section, footer {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px 5px;
background-color: #fff;
border-bottom: 1px solid #ccc;
}
.logo {
display: flex;
align-items: center;
margin-left:10px;
}
.logo h3 {
font-size: medium;
}
.logo img {
width: 80px;
height: 70px;
margin-right: 10px;
}
/* Reset some default browser styles */
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
/* Flexbox container for horizontal alignment */
nav ul {
display: flex;
justify-content: space-around;
align-items: center;
margin: 0;
padding: 0;
background-color: #fff;
/* border-bottom: 1px solid #ccc; */
}
/* Style each list item */
nav ul li {
position: relative;
}
/* Style for navigation links */
nav ul li a {
display: block;
padding: 15px 40px;
text-decoration: none;
color: #000;
font-weight: bold;
transition: background-color 0.5s;
}
nav ul li a:hover {
background-color: #f9f9f9;
}
/* Dropdown container */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
transition: background-color 0.3s;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Add some hover effects for main navigation links */
nav ul li a::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: #000;
bottom: -5px;
left: 0;
transform: scaleX(0);
transition: transform 0.5s ease;
}
nav ul li a:hover::after {
transform: scaleX(1);
}
.hero {
position: relative;
width: 100%;
max-width: 100%;
height: 500px;
overflow: hidden;
}
.hero-image {
width: 100%;
max-width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.hero:hover .hero-image {
transform: scale(1.05);
transition: transform 3s ease;
}
.hero-text {
position: absolute;
bottom: 60px;
left: 20px;
background-color: rgba(0, 0, 0, 0.5);
color: #ece7e7;
padding: 20px;
border-radius: 5px;
}
.hero-text h4 {
margin: 0;
color: #ffffff;
}
.hero-text p {
margin: 5px 0 0;
color: #fffcfc;
}
.header-image-container {
position: relative;
width: 100%;
height: 600px;
margin: 20px auto; /* Adjust margin as needed */
overflow: hidden;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 8px;
animation: slideInRight 1s forwards; /* Animation declaration */
}
.header-image {
width: 100%;
height: auto;
transition: transform 0.3s ease;
}
.header-image:hover {
transform: scale(1.015); /* Scale the image on hover */
}
/* Keyframes for sliding in from the right */
@keyframes slideInRight {
from {
transform: translateX(100%);
}
to {
transform: translateX(0);
}
}
main {
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.course-info {
display: flex;
width: 100%;
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
overflow: hidden;
margin-bottom: 30px;
transition: transform 0.3s, background-color 0.3s;
}
.course-info:hover {
/* background-color: #e9e9e9e5; */
transform: scale(1.015);
}
.image-container {
flex: 1;
}
.image-container img {
width: 100%;
height: auto;
/* transition: transform 0.3s ease; */
}
/* .image-container img:hover {
transform: scale(1.05);
} */
.course-details {
flex: 1;
padding: 20px;
}
.course-details h3 {
font-size: 28px;
margin-bottom: 10px;
}
.course-details p {
font-size: 18px;
line-height: 1.6;
}
.course-details p:first-of-type {
font-weight: bold;
}
.specializations {
text-align: center;
width: 100%;
}
.specializations h2 {
font-size: 28px;
margin-bottom: 20px;
}
.specialization-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 10px;
}
.specialization {
width: 500px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 8px;
overflow: hidden;
background-color: white;
transition: transform 0.3s ease;
}
.specialization img {
width: 100%;
height: 300px;
}
.specialization p {
margin: 10px 0;
padding: 10px;
font-size: 20px;
background-color: #f9f9f9;
color: #333;
}
.specialization:hover {
transform: scale(1.05);
}
.peos {
display: flex;
align-items: center;
background-color: #0c2035;
padding: 20px;
margin-top: 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
transition: transform 0.3s, background-color 0.3s;
}
.peos:hover {
/* background-color: #e9e9e9e5; */
transform: scale(1.015);
}
.peos-content {
flex: 1;
color: white;
}
.peos-content h2 {
font-size: 24px;
margin-bottom: 20px;
}
.peos-content ul {
list-style: none;
padding: 0;
}
.peos-content li {
font-size: 18px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.peos-content .checkmark {
font-size: 24px;
margin-right: 10px;
}
.peos-image {
flex: 1;
padding: 20px;
}
.peos-image img {
width: 100%;
height: auto;
border-radius: 8px;
}
.programme-outcome {
background-color: #0c3f75;
color: white;
padding: 20px;
margin-top: 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
transition: transform 0.3s, background-color 0.3s;
}
.programme-outcome:hover {
/* background-color: #e9e9e9e5; */
transform: scale(1.015);
}
.programme-outcome h2 {
font-size: 24px;
margin-bottom: 20px;
}
.programme-outcome ul {
list-style: none;
padding: 0;
}
.programme-outcome li {
font-size: 18px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.programme-outcome li::before {
content: "✔";
margin-right: 10px;
color: white;
font-size: 24px;
}
.programme-sf {
background-color: #0c2035;
color: white;
padding: 20px;
margin-top: 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.programme-sf h2 {
font-size: 24px;
margin-bottom: 20px;
}
.programme-sf ul {
list-style: none;
padding: 0;
}
.programme-sf li {
font-size: 18px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.programme-sf li::before {
content: "✔";
margin-right: 10px;
color: white;
font-size: 24px;
}
.curriculum {
width: 100%;
text-align: center;
background-color: #f9f9f9;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin-top: 30px;
}
.curriculum h2 {
font-size: 28px;
margin-bottom: 20px;
}
.year-buttons {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
}
.year-buttons button {
background-color: #011731;
color: white;
border: solid;
padding: 7px 15px;
font-size: 22px;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.year-buttons button:hover {
background-color: #0056b3;
}
.syllabus {
text-align: left;
margin-top: 30px;
}
.syllabus h3 {
font-size: 24px;
margin-bottom: 20px;
}
.syllabus h4 {
font-size: 24px;
margin-bottom: -70px;
text-align: center;
}
.semesters {
display: flex;
justify-content: space-between;
margin-bottom: -100px;
}
.syllabus ul {
list-style: none;
padding: 80px;
}
.syllabus li {
font-size: 20px;
margin-bottom: 20px;
}
.download-btn {
background-color: #011731;
color: white;
border: solid;
padding: 5px 10px;
font-size: 18px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
text-decoration: none;
}
.download-btn:hover {
background-color: #0056b3;
}
.scheme {
margin-top: 20px;
font-style: italic;
}
.eligibility-criteria {
width: 100%;
text-align: center;
background-color: #f9f9f9;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin-top: 30px;
}
.eligibility-criteria h2 {
font-size: 28px;
margin-bottom: 20px;
}
.eligibility-criteria p {
font-size: 18px;
line-height: 1.6;
}
.fee-structure {
margin-top: 30px;
padding: 20px;
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.fee-structure h2 {
font-size: 28px;
margin-bottom: 20px;
text-align: center;
}
.fee-structure table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.fee-structure table th,
.fee-structure table td {
border: 1px solid #ccc;
padding: 10px;
text-align: center;
}
.fee-structure table th {
background-color: #f0f0f0;
font-weight: bold;
}
.fee-structure table td {
font-size: 18px;
}
.view-btn {
background-color: #011731;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 20px;
}
.view-btn:hover {
background-color: #0056b3;
}
.note {
margin-top: 20px;
font-style: italic;
font-size: 16px;
font-weight: bold;
}
.key-features {
text-align: center;
background-color: #f9f9f9;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin-top: 30px;
transition: transform 0.3s, background-color 0.3s;
}
.key-features:hover {
/* background-color: #e9e9e9e5; */
transform: scale(1.015);
}
.key-features h2 {
font-size: 28px;
margin-bottom: 20px;
}
.key-features ul {
list-style:decimal;
padding: 0;
}
.key-features li {
font-size: 20px;
margin-bottom: 10px;
text-align: left;
margin-left: 20%;
margin-right: 20%;
}
footer {
background: #011731;
color: #fff;
padding: 20px 0;
text-align: center;
}
footer .footer-content {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
footer .footer-links a {
margin: 0 10px;
color: #fff;
}
footer .footer-links a:hover {
text-decoration: underline;
}
footer .social-media a img {
width: 30px;
margin: 0 10px;
}
footer p {
margin-top: 10px;
}
</style>
<body>
<header>
<div class="logo">
<img src="images/csvtu logo.png" alt="Chhattisgarh Swami Vivekanand Technical University">
<h3>Chhattisgarh Swami Vivekanand<br/>Technical University</h3>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="add_ug.html">Admissions</a></li>
<li class="dropdown">
<a href="#" class="dropbtn">Faculty</a>
<div class="dropdown-content">
<a href="Btech_faculty.html">Btech's Faculties</a>
<a href="Diploma_faculty.html">Diploma's Faculties</a>
<a href="PG_faculty.html">PG's Faculties</a>
</div>
</li>
<li><a href="contact.html">Contact Us</a></li>
<!-- <li><a href="menu.html" id="menu-link">Menu</a></li> -->
</ul>
</nav>
</header>
<div class="header-image-container">
<img src="Banners\Mtech_Energy.png" alt="Image" class="header-image">
</div>
<main>
<section class="course-info">
<div class="image-container">
<img src="images/Btech.webp" alt="Laptop">
</div>
<div class="course-details">
<h3>M.Tech | Energy and Environmental Engineering</h3>
<p>DURATION : 2 YRS. (4 SEMESTERS)</p>
<p>
Department of Energy and Environmental Engineering has been established at the University Teaching Department, CSVTU, Bhilai since June 2016. The Department offers PG programme (M.Tech.) in Energy and Environmental Engineering. The department believes in imparting quality education to the students, interaction with eminent personalities and academicians from prestigious Institutions/industries.
The major task of the Department is to develop comprehensive innovative solutions to various energy and environmental challenges by undertaking Environmental and Energy leadership projects. This involves promoting energy efficiency and the adoption of renewable energy sources like Solar, Wind, Geothermal, Small Hydro, and Biomass etc. to meet energy requirements and to consider various renewable energy policies at the local, regional, and national levels. The department is actively engaged in different energy and environmental engineering research areas pertaining to solar energy and environmental engineering.
</p>
<p style="font-weight: bold;">University is commencing M.Tech from 2020-21. The nomenclature of the degree are as follows:</p>
<ul>
<li>M.Tech in Energy and Environmental Engineering – 18 Seats</li>
</ul>
</div>
</section>
<section class="objectives">
<div class="programme-sf">
<h4>Objectives of the Department: </h4>
<ul>
<span class="checkmark">✔</span>
To develop sustainable infrastructure by providing solutions to acute problems in energy security
<br>
<span class="checkmark">✔</span>
To integrate the efforts of scientists and engineers working with different aspects of green energy
<br>
<span class="checkmark">✔</span>
To provide quality education through regular educational programs (such as M.Tech., Ph.D.) and for providing trained manpower to industry in the area of green energy and energy efficiency.
<br>
<span class="checkmark">✔</span>
To produce highly trained technical manpower to meet the Global Climate and Energy Security challenges & to undertake R&D projects and Policy Research Issues to achieve at domestic and commercial environment.
<br>
<span class="checkmark">✔</span>
To contribute to grass-root level research and deployment in the field of energy and environment.
<br>
<span class="checkmark">✔</span>
The department aims at providing quality postgraduate education to meritorious undergraduates with keen interest in both the fields of green energy and energy efficiency.
<br>
<span class="checkmark">✔</span>
Energy department is proposed to closely associate with industry and several national & foreign academic institutions of repute with an aim to foster cutting edge research and establish ourselves as a leader in this field.
<br>
<span class="checkmark">✔</span>
To strengthen and rationalise the research, demonstration and development efforts in all green energy technologies & to provide Auditors/ Managers/Consultants for Energy and Environment.
<br>
<span class="checkmark">✔</span>
Energy department is dedicated to accelerate the deployment of renewable energy and low carbon generation technology through the utilization of Biomass, Wind, Hydro Power, Solar PV and Solar Thermal energy.
<br>
<span class="checkmark">✔</span>
By the objectives and goals described above, it is believed that Energy Department achievement would lead to “Green Energy for Green Campus”.
<br>
<p>“With these objectives, in mind Energy Department could contribute significantly in making India a world leader in this area and make a social impact as well.”</p>
</ul>
</section>
<section class="VISION AND MISSION">
<div class="programme-sf">
<h2>VISION</h2>
<ul>
<p>The vision of the department is “To develop successful academic research community in the area of sustainable and green technology for a better tomorrow”.</p>
</ul>
</div>
<div class ="programme-sf">
<h2>MISSION</h2>
<ul>
<p>The research mission of the Energy Department is to:</p>
• Contribute to the development of next generations of highly qualified and ethical professionals through specialized training and knowledge build-up in areas of green technology and renewable energy.
<br>
• Promote the vision of the department among academic, industrial, and public sectors through demonstration and dissemination of green technology projects and create environment.
<br>
• Develop eco-friendly sustainable technologies to ensure the energy security of the country and the world.
<br>
• Partner with industry, research organizations and government in India and abroad for the commercialization of research ideas.
<br>
• Improve the quality of life of citizens of India, conserving natural resources, and serve as an engine for socio economic and sustainable development.
<br>
• Promote and establish a clear pathway to make CSVTU a green campus within the next ten years and to propagate green campus ideas and methodologies
</ul>
</div>
</section>
<section class="programme-sf">
<h2>Programme Outcomes</h2>
<p>Students will acquire fundamental knowledge in energy principles, technologies and environmental sciences, as well as the ability to facilitate solutions to problems related to energy technologies, environmental engineering, New and renewable energy resources, energy efficient buildings, etc., that contribute to the well-being of our environment and society.</p>
</section>
<section class="programme-sf">
<h2>Career Prospects</h2>
<p>The knowledge and skills gained by students of the Programme will afford them strong career prospects. They will find employability in current and emerging areas of energy systems, environmental monitoring and control, sensor instrumentation, and smart and green building technologies, among others. They can land jobs in Government, electric companies and power grid enterprises, building and construction industries, consulting firms and green groups, renewable technology companies, and vehicle industries, to cite just some of the possibilities. They can also pursue doctorate studies in their specialized areas of interest in India or overseas. <br>
Solar energy companies of India <br>
Astonfield, Azure Power, Hindustan Power, Indosolar, ReNew Power, SELCO India, Solairedirect, Solar Energy Corporation of India, Su-Kam Power Systems, Suzlon, Tata Power Solar, Vikram Solar, Vivaan Solar. <br>
Wind power companies of India <br>
ReNew Power, Suzlon.</p>
</section>
<section class="curriculum">
<h2>CURRICULUM</h2>
<div class="year-buttons">
<button onclick="showSyllabus('first-year')">1st Year</button>
<button onclick="showSyllabus('second-year')">2nd Year</button>
</div>
<div class="syllabus" id="first-year">
<h3>1st Year</h3>
<div class="semesters">
<ul>
<li><strong>1st Semester</strong> <a href="Syllabus/Energy&envrnmntal/1 Syllabus.pdf" class="download-btn" target="_blank">View PDF</a></li>
<li>New and Renewable Energy Resources</li>
<li>Environmental Pollution & Management</li>
<li> Energy system modeling & Energy audit </li>
<li>Applied Instrumentation for Energy & Environmental Monitoring</li>
<li>Elective-I</li>
<li>Environmental Quality Monitoring Lab</li>
<li>Applied Instrumentation Lab</li>
</ul>
<ul>
<li><strong>2nd Semester</strong> <a href="Syllabus/Energy&envrnmntal/2 Syllabus.pdf" class="download-btn" target="_blank">View PDF</a></li>
<li>Geo environment, Effluent Treatment & Waste Utilization</li>
<li>Biomass Conversion Technologies</li>
<li>Energy Efficiency In Electrical & Thermal Utilities</li>
<li>Solar Thermal And Solar Photovoltaic system</li>
<li>Elective-II</li>
<li>Solar Thermal & Photovoltaic Lab</li>
<li>Energy Efficiency Lab</li>
</ul>
</div>
</div>
<div class="syllabus" id="second-year" style="display:none;">
<h3>2nd Year</h3>
<div class="semesters">
<ul>
<li><strong>3rd Semester</strong> <a href="Syllabus/Energy&envrnmntal/3 Syllabus.pdf" class="download-btn" target="_blank">View PDF</a></li>
<li>Energy efficient Buildings</li>
<li>Elective-III</li>
<li>Field Visit and Case Study</li>
<li>Minor Project</li>
</ul>
<ul>
<li><strong>4th Semester</strong> <a href="Syllabus/Energy&envrnmntal/4 Syllabus.pdf" class="download-btn" target="_blank">View PDF</a></li>
<li>Project + Seminar</li>
</ul>
</div>
</div>
<p class="scheme"><strong>M.Tech in Energy & Environmental Engineering
Scheme: </strong> <a href="Syllabus/Energy&envrnmntal/Scheme_Syllabus_Combined.pdf" class="download-btn" target="_blank">View PDF</a></p>
<!-- <p class="scheme"><strong>B.Tech in Computer Science & Engineering (Data Science)
Scheme: </strong> <a href="Scheme/DS SCHEME.pdf" class="download-btn" target="_blank">View PDF</a></p> -->
</section>
<section class="eligibility-criteria">
<h2>ELIGIBILITY CRITERIA</h2>
<p>Duration: 2 yrs. The Candidates should have passed Senior Secondary (10+2) or an equivalent Examination in five subjects taken together including compulsory subjects of Physics, Mathematics and one subject of Chemistry/ Biotechnology/ Biology/ Computer Science & English with 60% marks in aggregate (40% marks in the case of SC/ ST Category). Or Passed Diploma examination with at least 60% marks (40% in case of candidates belonging to reserved category), subject to vacancies in the First Year, in case the vacancies at lateral entry are exhausted.</p>
</section>
<section class="fee-structure">
<h2>Fee Structure</h2>
<table>
<thead>
<tr>
<th>Semester</th>
<th>Total Fee</th>
</tr>
</thead>
<tbody>
<tr>
<td>1st Semester</td>
<td>30000.00</td>
</tr>
<tr>
<td>2nd Semester</td>
<td>30000.00</td>
</tr>
<tr>
<td>3rd Semester</td>
<td>30000.00</td>
</tr>
<tr>
<td>4th Semester</td>
<td>30000.00</td>
</tr>
<tr>
<td>Total</td>
<td>120000.00</td>
</tr>
</tbody>
</table>
</section>
<!--
<section class="key-features">
<h2>KEY FEATURES</h2>
<ul>
<li>Real Life Industry Projects</li>
<li>Personalised Mentorship & Doubt-Solving Support</li>
<li>Specialisation Certificates</li>
<li>Making Students Industry Ready</li>
<li>Complimentary Python Programming Bootcamp</li>
<li>One-on-One with Industry Mentors</li>
<li>Career Essential Soft Skills Program</li>
<li>Job Assistance with Top Firms</li>
</ul>
</section>-->
<footer>
<div class="footer-content">
<div class="footer-links">
<a href="privacy-policy.html">Privacy Policy</a>
<a href="terms-of-service.html">Terms of Service</a>
</div>
<div class="social-media">
<a href="#"><img src="images/facebook logo Background Removed.png" alt="Facebook"></a>
<br>
<a href="#"><img src="images/twitter-x-logo.png" alt="Twitter"></a>
<br>
<a href="#"><img src="images/mail.png" alt="Mail"></a>
</div>
</div>
<p>© 2024 University Teaching Department (CSVTU). All Rights Reserved.</p>
<p>Contact us at enquiry@csvtu.ac.in</p>
</footer>
</main>
<script>
function showSyllabus(id) {
// Hide all syllabus divs
var syllabuses = document.querySelectorAll('.syllabus');
syllabuses.forEach(function(syllabus) {
syllabus.style.display = 'none';
});
// Display the selected syllabus
var selectedSyllabus = document.getElementById(id);
if (selectedSyllabus) {
selectedSyllabus.style.display = 'block';
}
}
</script>
</body>
</html>