-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (112 loc) · 4.73 KB
/
Copy pathindex.html
File metadata and controls
118 lines (112 loc) · 4.73 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
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EduSphere</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="logo">
<span class="logo-text">Edu<span class="highlight">Sphere</span></span>
</div>
<div class="nav-links">
<a href="#">Home</a>
<a href="#features">Features</a>
<a href="#about">About</a>
<a href="login.html">Login</a>
<button class="btn-primary" onclick="window.location.href='register.html'">Get Started</button>
</div>
</nav>
<section class="hero">
<div class="hero-content">
<h1>One platform for your <span class="highlight">entire university</span></h1>
<p>A unified academic ecosystem designed to streamline operations, enhance learning, and connect every stakeholder — from university administration to students — through one intelligent platform.</p>
<div class="hero-buttons">
<button class="btn-primary" onclick="window.location.href='register.html'">Get Started</button>
<button class="btn-outline">See Demo</button>
</div>
</div>
</section>
<section class="features" id="features">
<h2>Everything your institution needs</h2>
<p class="features-sub">From attendance to academics, we have you covered</p>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">📚</div>
<h3>Smart attendance</h3>
<p>Digital tracking with auto-reports and defaulter alerts</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔒</div>
<h3>Secure exams</h3>
<p>Full-screen mode with activity monitoring and anti-cheating measures</p>
</div>
<div class="feature-card">
<div class="feature-icon">💬</div>
<h3>Doubt portal</h3>
<p>Anonymous question submission with teacher responses</p>
</div>
<div class="feature-card">
<div class="feature-icon">🌐</div>
<h3>Inter-college network</h3>
<p>Connect with other colleges and share resources</p>
</div>
</div>
</section>
<section class="roles" id="about">
<h2>Built for everyone</h2>
<p class="features-sub">Each role gets a tailored, secure experience</p>
<div class="roles-grid">
<div class="role-card" onclick="window.location.href='register.html'">
<div class="role-icon">🎓</div>
<h3>Student</h3>
<p>Access notes, attendance, quizzes, AI assistance and connect with peers</p>
</div>
<div class="role-card" onclick="window.location.href='register.html'">
<div class="role-icon">👨🏫</div>
<h3>Teacher</h3>
<p>Manage classes, upload notes, create quizzes and track performance</p>
</div>
<div class="role-card" onclick="window.location.href='register.html'">
<div class="role-icon">🏛️</div>
<h3>Institution</h3>
<p>Manage departments, users and oversee entire academic operations</p>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-brand">
<span class="logo-text">Edu<span class="highlight">Sphere</span></span>
<p>A unified academic ecosystem for universities, colleges, teachers and students.</p>
</div>
<div class="footer-links">
<div class="footer-col">
<h4>Product</h4>
<a href="#">Features</a>
<a href="#">How it works</a>
<a href="#">Pricing</a>
</div>
<div class="footer-col">
<h4>Company</h4>
<a href="#">About</a>
<a href="#">Contact</a>
<a href="#">Careers</a>
</div>
<div class="footer-col">
<h4>Connect</h4>
<a href="#">GitHub</a>
<a href="#">Twitter</a>
<a href="#">LinkedIn</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 EduSphere. All rights reserved.</p>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>