-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (49 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Slow Learner Education Platform</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>🚀 Slow Learner Education Platform</h1>
<nav>
<a href="#">Home</a>
<a href="#">Courses</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</div>
</header>
<main>
<section class="learning-path container">
<h2>🎓 Personalized Learning Path</h2>
<p>Welcome to an exciting journey of learning tailored just for you!</p>
<p>Tell us your goals, preferences, and dreams, and we'll craft a unique learning experience.</p>
<form id="learningPathForm">
<label for="learningGoal">🎯 Learning Goal:</label>
<input type="text" id="learningGoal" name="learningGoal" placeholder="E.g., Master JavaScript" required>
<label for="learningPreference">🎨 Learning Preference:</label>
<select id="learningPreference" name="learningPreference">
<option value="visual">👀 Visual</option>
<option value="auditory">👂 Auditory</option>
<option value="kinesthetic">👐 Kinesthetic</option>
</select>
<button type="submit">🚀 Start Learning!</button>
</form>
<div id="messageBox" class="message"></div>
</section>
<!-- Other sections for multimedia content, quizzes, progress tracking -->
</main>
<footer>
<div class="container">
<p>© 2024 Slow Learner Education Platform. All rights reserved.</p>
<p>Created with ❤️ by Team Algorithmic Avengers</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>