-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (85 loc) · 3.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>student Management</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/my.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
</head>
<body>
<div class="row">
<div class="container-fluid">
<section class="home ">
<div class="row">
<div class="home-content col-lg-12">
<h1>Student Management <br>System</h1>
<br>
</div>
<div class="button-align col-lg-12">
<a href="frontpages/Admin_login.html" class="btn-box">Admin</a>
<a href="frontpages/Stud_login.html" class="btn-box">Student</a>
<a href="frontpages/Staff_login.html" class="btn-box">Staff</a>
</div>
</div>
</section>
</div>
<br>
<div class="row">
<div class="col-lg-12">
<div class="about">
<div class="container">
<h1 class=" text-uppercase text-center" style="color:rgb(158, 74, 9)">
<stroke><strong>About</strong></stroke>
</h1>
<h2 class="text-center">Welcome to our Student Management System
</h2>
<div class="container">
<div class="row">
<div class="col-lg-4 text-align">
<h2 class="text-center">Well Maintained Records</h2>
<p class="mytext text-center">This Student management System stores the information of students,
faculty, department,
etc. </p>
</div>
<div class="col-lg-4 text-align">
<h2 class="text-center">Centralised Management</h2>
<p class="mytext text-center">All the information in this system is handles by Administrator. As a result changes can be only made by the central Admin. While this is true, some previledges are also granted to the faculty.
</p>
</div>
<div class="col-lg-4 text-align">
<h2 class="text-center"> Information security</h2>
<p class="mytext text-center">Data is the most critical and confidential aspect for every industry,
including schools
and universities. Therefore, it must be secure, and there should be a proper management for backing
up
this data. Because Student system management software also deals with an array of sensitive
information, so
they need to have a security layer to safeguard it from illegitimate hackers or unknown users.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
<div class="col-lg-12 text-center">
<div class="contact">
<div class="container">
<h1 class="display-1 text-uppercase text-white text-center">
<stroke><strong>Contact</strong></stroke>
</h1>
<h3>Created By:</h3>
<h4><a href="[email protected]">Samruddhi Adhikary</a><br>
<a href=" [email protected]">Payal Kokane</a><br>
<a href="[email protected]">Sarita Galatage</a></h4>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</body>
</html>