-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
95 lines (85 loc) · 2.55 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
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EduSync</title>
<link rel="stylesheet" href="/css/home-styles.css" />
</head>
<body>
<section id="sec-1">
<div class="banner">
<div class="navbar">
<img src="/assets/Edu-Sync.png" alt="logo" class="logo" />
<ul>
<li><a href="#sec-2">Student Portal</a></li>
<li><a href="#sec-3">About</a></li>
</ul>
</div>
</div>
<div class="content">
<h1>WELCOME TO EDU-SYNC</h1>
<p>A Student Registration System</p>
<div>
<a href="#sec-2"
><button type="button">View Student Portal</button></a
>
</div>
</div>
</section>
<section id="sec-2">
<div class="container">
<header>Student Portal</header>
<div class="buttons">
<div>
<a href="login.html">
<button type="button" class="newStudent-btn">
Student Registration
</button>
</a>
</div>
<div>
<a href="student-card.html">
<button type="button" class="viewStudent-btn">
View Student Details
</button>
</a>
</div>
<div>
<a href="admin.html">
<button type="button">Admin</button>
</a>
</div>
<div>
<a href="#sec-1">
<button type="button">Home</button>
</a>
</div>
</div>
</div>
</section>
<section id="sec-3">
<div class="container">
<img src="/assets/Edu-Sync-black.png" alt="logo" />
<div class="about-us">
<h1>About us</h1>
<p>
At EduSync, we are passionate about empowering educational
institutions with efficient student management solutions. Our
user-friendly student portal has been meticulously designed to
simplify the registration process for new students while providing
administrators with the tools they need to manage student records
effortlessly.
</p>
<a href="#sec-2"
><button type="button">View Student Portal</button></a
>
</div>
<div class="footer">
<p>Copyright © 2023, Rashen Fernando</p>
</div>
</div>
</section>
<script src="/js/home.js"></script>
</body>
</html>