-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (85 loc) · 4.33 KB
/
index.html
File metadata and controls
88 lines (85 loc) · 4.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Smart Timetable - Manipal University Jaipur</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
/* Embedded CSS for quick setup */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; }
.navbar { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 15px 20px; }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; font-size: 1.5rem; font-weight: bold; color: #2c3e50; }
.nav-logo i { margin-right: 10px; color: #3498db; }
.nav-menu { display: flex; gap: 30px; }
.nav-link { text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s; }
.nav-link:hover { color: #3498db; }
.login-btn { background: #3498db; color: white !important; padding: 10px 20px; border-radius: 5px; transition: background 0.3s; }
.login-btn:hover { background: #2980b9; }
.hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 120px 20px; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }
.cta-button { display: inline-block; background: #e74c3c; color: white; padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; transition: background 0.3s; }
.cta-button:hover { background: #c0392b; }
.features { padding: 80px 20px; background: #f8f9fa; }
.container { max-width: 1200px; margin: 0 auto; }
.features h2 { text-align: center; margin-bottom: 50px; font-size: 2.5rem; color: #2c3e50; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: white; padding: 40px 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-10px); }
.feature-card i { font-size: 3rem; color: #3498db; margin-bottom: 20px; }
footer { background: #2c3e50; color: white; text-align: center; padding: 20px 0; }
</style>
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<i class="fas fa-calendar-alt"></i>
<span>Smart Timetable</span>
</div>
<div class="nav-menu">
<a href="#home" class="nav-link">Home</a>
<a href="#features" class="nav-link">Features</a>
<a href="login.html" class="nav-link login-btn">Login</a>
</div>
</div>
</nav>
<section id="home" class="hero">
<div class="hero-content">
<h1>Smart Timetable & Class Scheduler</h1>
<p>Revolutionizing education with intelligent scheduling and management</p>
<a href="login.html" class="cta-button">Get Started</a>
</div>
</section>
<section id="features" class="features">
<div class="container">
<h2>Key Features</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fas fa-robot"></i>
<h3>AI-Powered Scheduling</h3>
<p>Intelligent algorithms optimize your timetable automatically</p>
</div>
<div class="feature-card">
<i class="fas fa-users"></i>
<h3>Multi-User Support</h3>
<p>Support for students, teachers, and administrators</p>
</div>
<div class="feature-card">
<i class="fas fa-mobile-alt"></i>
<h3>Mobile Responsive</h3>
<p>Access your schedule anywhere, anytime</p>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 Smart Timetable - Smart India Hackathon</p>
</div>
</footer>
</body>
</html>