-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimetables.html
More file actions
42 lines (37 loc) · 1.48 KB
/
timetables.html
File metadata and controls
42 lines (37 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Generated Timetables | Smart Schedule</title>
<link rel="stylesheet" href="styles/main.css"> <!-- ربط ملف CSS -->
<style>
html {
scroll-behavior: smooth; /* لتفعيل التمرير السلس */
}
</style>
</head>
<body>
<!-- ✅ عنوان الصفحة -->
<header class="hero">
<h1>🎯 Congratulations! Your Timetables Have Been Generated</h1>
<p>Select the timetable that fits your preferences best.</p>
</header>
<!-- ✅ حاوية الجداول الزمنية -->
<section id="timetables-container" class="grid-container">
<!-- سيتم إنشاء الجداول ديناميكيًا باستخدام JavaScript -->
</section>
<!-- ✅ قسم عرض الإحصائيات -->
<section id="stats-container" class="stats-section">
<h2>📊 Timetable Statistics</h2>
<p><strong>Total Study Hours:</strong> <span id="total-hours">0</span></p>
<p><strong>Gaps Between Classes:</strong> <span id="gaps-count">0</span></p>
</section>
<!-- ✅ تذييل الصفحة -->
<footer class="footer">
<p>© 2023 Smart Schedule. All rights reserved.</p>
</footer>
<!-- ✅ ربط ملف JavaScript -->
<script src="scripts/app.js"></script>
</body>
</html>