-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathabout.html
819 lines (720 loc) · 22.3 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<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;
}
.overview {
background-color: #ffffff;
color: #000000;
padding: 20px;
margin-top: 30px;
border-radius: 8px;
}
.constituent-institutions {
background-color: #ffffff;
color: #000000;
padding: 20px;
margin-top: 30px;
border-radius: 8px;
}
.institution {
background-color: #ffffff;
color: #000000;
padding: 20px;
margin-top: 30px;
border-radius: 8px;
}
/* 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: 300px;
margin-top: 50px;
/* 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{
background-color: #0c3f75;
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 {
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;
}
.fee-structure h2 {
font-size: 28px;
margin-bottom: 20px;
}
.fee-table {
max-width: 1000px;
margin: 0 auto;
overflow-x: auto; /* Enable horizontal scroll for smaller screens */
padding-bottom: 25px;
}
.fee-table table {
width: 100%;
border-collapse: collapse;
border-radius: 8px;
overflow: hidden;
}
.fee-table table th,
.fee-table table td {
padding: 12px;
text-align: center;
border: 1.5px solid #ddd; /* Light gray border */
}
.fee-table table thead {
background-color: #011731; /* Dark blue background for table header */
color: white;
}
.fee-table table tbody tr:nth-child(even) {
background-color: #f9f9f9; /* Alternate row background */
}
.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: #ffffff;
color: #726c6c;
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>
</head>
<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>
<section class="course-info">
<div class="image-container">
<img src="images/UTD Pic.jpg" alt="Laptop">
</div>
<div class="course-details">
<h3>Overview</h3>
<p>University Teaching Department (UTD)</p>
<p>Teaching Department started in the year 2016 with Four PG courses, namely Master of Design (discontinued from 2017), M.Tech. in Energy and Environmental Engineering, M.Tech. in Biomedical Engineering & Bio-Informatics, and M.Tech. in Microelectronics & VLSI. From academic session 2017-2018, three new PG courses – M.Tech. in Structural Engineering, M.Tech. in Environmental & Water Resources Engineering and M.Plan in Urban Planning were started. Currently, UTD is running total six PG courses. All the six courses are uniquely and specifically designed to meet the challenges in research and industry.
</p>
</div>
</section>
<!-- <section class="overview">
<h1>Overview</h1>
<p>• Teaching Department started in the year 2016 with Four PG courses, namely Master of Design (discontinued from 2017), M.Tech. in Energy and Environmental Engineering, M.Tech. in Biomedical Engineering & Bio-Informatics, and M.Tech. in Microelectronics & VLSI. From academic session 2017-2018, three new PG courses – M.Tech. in Structural Engineering, M.Tech. in Environmental & Water Resources Engineering and M.Plan in Urban Planning were started. Currently, UTD is running total six PG courses. All the six courses are uniquely and specifically designed to meet the challenges in research and industry.</p>
</section> -->
<section class="programme-sf">
<div class="programme-sf">
<h1>Btech Computer Science Engneering</h1>
<p>The B.Tech in Computer Science Engineering program is designed to equip students with foundational knowledge and practical skills in computer science, software development, and information technology. The curriculum covers key areas such as algorithms, data structures, programming languages, and artificial intelligence preparing graduates for dynamic careers in the tech industry.</p>
<li>B.Tech (Honours) in Computer Science Engineering (Artificial Intelligence)</li>
<li>B.Tech (Honours) in Computer Science Engineering (Data Science)</li>
</div>
</section>
<section class="programme">
<div class="programme-outcome">
<h1>Diploma</h1>
<li>Diploma in Mining Engineering</li>
<li>Diploma in Industrial Safety &Fire Safety Engineering</li>
</div>
</section>
<section class="programme-sf">
<h2>M.Tech. Courses</h2>
<ul>
<p>UTD offers a diverse range of M.Tech. programs, each uniquely crafted to meet the specific needs of various engineering and technological disciplines:</p>
<li>M.Tech. in Energy and Environmental Engineering</li>
<li>M.Tech. in Biomedical Engineering & Bio-Informatics</li>
<li>M.Tech. in Microelectronics & VLSI</li>
<li>M.Tech. in Structural Engineering (introduced in 2017-2018)</li>
<li>M.Tech. in Environmental & Water Resources Engineering (introduced in 2017-2018)</li>
</ul>
</section>
<section class="programme-outcome">
<h2>M.Plan</h2>
<p>Launched in the academic session 2017-2018, the Master of Planning in Urban Planning program aims to develop skilled professionals in urban development and management.</p>
<li>M.Plan in Urban Planning</li>
</section>
<section class="programme-sf">
<h2>Departments
</h2>
<li>Computer Science and Engineering</li>
<li>Energy and Environmental Engineering</li>
<li>Environmental and Water Resources Engineering</li>
<li>Structural Engineering</li>
<li>Urban Planning</li>
<li>Microelectronics and VLSI</li>
<li>Biomedical Engineering and Bio-Informatics</li>
<li>Steel Technology</li>
</section>
<section class="programme-outcome">
<h2>Facilities</h2>
<ul>
<p>UTD is equipped with state-of-the-art research facilities and computational resources, including:</p>
<li>A Research Hub with advanced software like ERDAS Imagine for satellite imagery analysis and GIS studies.</li>
<li>High-performance workstations</li>
<li>State-of-the-art computer labs</li>
<li>Smart classrooms</li>
</ul>
</section>
<section class="programme-sf">
<h2>Collaborations</h2>
<ul>
<p>UTD has established Memorandums of Understanding (MoUs) with leading institutes and government agencies to foster collaborative research and academic exchange:</p>
<li>RoStock University, Germany</li>
<li>RWTH Aachen University, Germany</li>
<li>University of Erlangen-Nuremberg, Germany</li>
<li>Indian Institute of Technology, Mandi</li>
<li>Sickle Cell Institute Chhattisgarh, Raipur</li>
<li>CSIR – NEERI, Nagpur</li>
<li>CREDA, Raipur</li>
<p>The University Teaching Department continues to expand its horizons, offering innovative programs and fostering a vibrant research environment to shape the future of engineering and technology.</p>
</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 [email protected]</p>
</footer>
</body>
</html>