-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminabout.html
More file actions
116 lines (112 loc) · 4.97 KB
/
adminabout.html
File metadata and controls
116 lines (112 loc) · 4.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Result Analysis System</title>
<link rel="stylesheet" href="adminabout.css">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="adminhome.html">Home</a></li>
<li><a href="adminabout.html" class="active">About</a></li>
<li><a href="addstudentdetails.html">Update Student</a></li>
<li><a href="showstudentdetail.html">Student Details</a></li>
<li><a href="addresultdetails.html">Update Result</a></li>
<li><a href="showresultdetails.html">Result Details</a></li>
<li><a href="admincontact.html">Contact</a></li>
<li style="float: right;"><a href="first.html">Logout</a></li>
</ul>
</nav>
<header class="hero-section">
<h3>Welcome to</h3>
<h1>Result Analysis System</h1>
<h3>of the</h3>
<h2>Department of Computer Science and Technology</h2>
<div class="logo-container">
<img src="logo.jpeg" alt="Department Logo" class="circular-logo">
</div>
</header>
<main class="container">
<section class="about-section">
<h2>About Our Department</h2>
<hr>
<p>The <b>Department of Computer Science and Technology</b> is the most highlighted department of one of the best polytechnic, Acharyya Prafulla Chandra Roy Polytechnic. The department has dedicated faculty members, well-maintained classrooms, and superb laboratory facilities. With approximately 180 students across all years, the department consistently achieve a placement rate of around 60% for our final-year students.</p>
<p>It is a great pleasure to anounce that every yea, the students of this esteemed department particcipate in e-Yantra Robotics competition, organized by IIT Bombay. We've had remarkable success, securing 1st place in 2015 and 2nd place in 2017.</p>
</section>
<section class="about-section">
<h2>About Us</h2>
<hr>
<p>Our <b>Result Analysis System</b> is designed to streamline the process of analyzing student performance and providing invaluable insights to faculties. Developed by the Department of Computer Science and Technology, this system is a cornerstone in our mission to improve academic outcomes and enhance student success.</p>
<p>Equipped with features like data visualization, comprehensive performance tracking, and tools for faculty members to follow up on student progress, our system offers a holistic solution for result details and analysis. Our ultimate goal is to empower faculties with data-driven insights, enabling them to make informed decisions and support continuous student growth.</p>
</section>
<section class="gallery-section">
<h2>Photo Gallery</h2>
<hr>
<div class="slideshow-container">
<div class="mySlides fade">
<img src="frontviewdrawing.jpeg" alt="college">
</div>
<div class="mySlides fade">
<img src="frontview.jpeg" alt="college">
</div>
<div class="mySlides fade">
<img src="college2.jpeg" alt="college">
</div>
<div class="mySlides fade">
<img src="college1.jpeg" alt="college">
</div>
<div class="mySlides fade">
<img src="finik23.jpeg" alt="magazine">
</div>
<div class="mySlides fade">
<img src="finik24.jpeg" alt="magazine">
</div>
<div class="mySlides fade">
<img src="finik25.jpeg" alt="magazine">
</div>
<div class="mySlides fade">
<img src="view.jpeg" alt="college">
</div>
<button class="prev" onclick="plusSlides(-1)">❮</button>
<button class="next" onclick="plusSlides(1)">❯</button>
</div>
<div style="text-align:center; padding: 10px;">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</section>
</main>
<script>
let slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
if (slides[slideIndex-1]) { // Check if the slide exists before trying to display it
slides[slideIndex-1].style.display = "block";
}
if (dots[slideIndex-1]) { // Check if the dot exists before trying to activate it
dots[slideIndex-1].className += " active";
}
}
</script>
</body>
</html>