-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (109 loc) · 3.93 KB
/
index.html
File metadata and controls
113 lines (109 loc) · 3.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Home Page</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles/style.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
</head>
<body>
<div class="sideBar position-fixed">
<div
class="d-flex flex-column flex-shrink-0 bg-dark position-static vh-100"
style="width: 4.5rem"
>
<a
href=""
class="d-block p-3 link-dark text-decoration-none mb-5"
title=""
data-bs-toggle="tooltip"
data-bs-placement="right"
data-bs-original-title="Icon-only"
>
<i
class="bi bi-kanban-fill text-light d-flex justify-content-center h2"
></i>
<span class="visually-hidden">Icon-only</span>
</a>
<ul class="nav nav-pills nav-flush flex-column mb-auto text-center">
<li class="my-3">
<div
class="nav-link active py-3"
title=""
data-bs-toggle="tooltip"
data-bs-placement="right"
data-bs-original-title="Orders"
>
<i class="bi bi-house-fill h3"></i>
</div>
</li>
<li class="nav-item my-3">
<a href="./add.html"
class="nav-link py-3"
aria-current="page"
title=""
data-bs-toggle="tooltip"
data-bs-placement="right"
data-bs-original-title="Home"
>
<i class="bi bi-person-plus-fill h3"></i>
</a>
</li>
<li class="my-3">
<a
href="./view.html"
class="nav-link py-3"
title=""
data-bs-toggle="tooltip"
data-bs-placement="right"
data-bs-original-title="Dashboard"
>
<i class="bi bi-person-lines-fill h3"></i>
</a>
</li>
</ul>
<div class="border-top">
<a
href="https://github.com/Tharush2002"
class="d-flex align-items-center justify-content-center p-3 link-dark text-decoration-none"
>
<i class="bi bi-github text-light h2"></i>
</a>
</div>
</div>
</div>
<div class="content">
<div class="title bg-primary p-3 rounded-4 mb-5">
<div class="h2 fw-bolder m-0 py-2">STUDENT MANAGEMENT SYSTEM</div>
</div>
<div>
<div class="container col-xxl-8 px-4">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5 justify-content-center">
<div class="col-10 col-sm-8 col-lg-6">
<img src="./img/Hero.png" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="700" height="500" loading="lazy">
</div>
<div class="col-lg-6">
<h1 class="display-4 fw-bolder text-body-emphasis lh-1 mb-3">Student Management System</h1>
<p class="lead fw-medium">A robust solution designed to streamline the management of student profiles, contact details, and images. Effortlessly handle student informationwith real-time data retrieval, secure storage, and an intuitive interface for seamless administration.</p>
</div>
</div>
</div>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>