aops02 commited on
Commit
a7aa763
·
verified ·
1 Parent(s): 7b936fb

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +498 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Tutor Coding
3
- emoji: 💻
4
- colorFrom: purple
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: tutor-coding
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: pink
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,498 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>CodeMaster | Learn to Code Online</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ scroll-behavior: smooth;
15
+ }
16
+
17
+ .hero-gradient {
18
+ background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
19
+ }
20
+
21
+ .text-gradient {
22
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
23
+ -webkit-background-clip: text;
24
+ background-clip: text;
25
+ color: transparent;
26
+ }
27
+
28
+ .card-hover:hover {
29
+ transform: translateY(-5px);
30
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
31
+ }
32
+
33
+ .learning-path:before {
34
+ content: '';
35
+ position: absolute;
36
+ left: 14px;
37
+ top: 0;
38
+ height: 100%;
39
+ width: 2px;
40
+ background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
41
+ }
42
+
43
+ .pulse {
44
+ animation: pulse 2s infinite;
45
+ }
46
+
47
+ @keyframes pulse {
48
+ 0% { transform: scale(1); }
49
+ 50% { transform: scale(1.05); }
50
+ 100% { transform: scale(1); }
51
+ }
52
+
53
+ .code-editor {
54
+ background-color: #1e293b;
55
+ border-radius: 0.5rem;
56
+ overflow: hidden;
57
+ }
58
+
59
+ .editor-header {
60
+ background-color: #0f172a;
61
+ padding: 0.5rem 1rem;
62
+ display: flex;
63
+ align-items: center;
64
+ }
65
+
66
+ .editor-buttons {
67
+ display: flex;
68
+ margin-right: 1rem;
69
+ }
70
+
71
+ .editor-button {
72
+ width: 12px;
73
+ height: 12px;
74
+ border-radius: 50%;
75
+ margin-right: 0.5rem;
76
+ }
77
+
78
+ .editor-button-red {
79
+ background-color: #ef4444;
80
+ }
81
+
82
+ .editor-button-yellow {
83
+ background-color: #f59e0b;
84
+ }
85
+
86
+ .editor-button-green {
87
+ background-color: #10b981;
88
+ }
89
+
90
+ .editor-content {
91
+ padding: 1.5rem;
92
+ color: white;
93
+ font-family: 'Courier New', Courier, monospace;
94
+ line-height: 1.75;
95
+ }
96
+ </style>
97
+ </head>
98
+ <body class="bg-slate-50">
99
+ <!-- Navigation -->
100
+ <nav class="bg-white shadow-sm sticky top-0 z-50">
101
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
102
+ <div class="flex justify-between items-center h-16">
103
+ <div class="flex items-center">
104
+ <div class="flex-shrink-0 flex items-center">
105
+ <i class="fas fa-code text-blue-600 text-2xl mr-2"></i>
106
+ <span class="text-xl font-bold text-gray-800">Code<span class="text-gradient">Master</span></span>
107
+ </div>
108
+
109
+ <div class="hidden md:block ml-10">
110
+ <div class="flex space-x-8">
111
+ <a href="#courses" class="text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">Courses</a>
112
+ <a href="#features" class="text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">Features</a>
113
+ <a href="#learning-path" class="text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">Paths</a>
114
+ <a href="#practice" class="text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium">Practice</a>
115
+ </div>
116
+ </div>
117
+ </div>
118
+
119
+ <div class="hidden md:block">
120
+ <div class="ml-4 flex items-center md:ml-6">
121
+ <a href="#" class="text-gray-800 hover:text-blue-600 px-3 py-2 text-sm font-medium mr-4">Log in</a>
122
+ <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md text-sm font-medium transition duration-300">
123
+ Sign up free
124
+ </button>
125
+ </div>
126
+ </div>
127
+
128
+ <!-- Mobile menu button -->
129
+ <div class="md:hidden flex items-center">
130
+ <button type="button" class="text-gray-500 hover:text-gray-600 focus:outline-none" onclick="toggleMenu()">
131
+ <i class="fas fa-bars text-xl"></i>
132
+ </button>
133
+ </div>
134
+ </div>
135
+ </div>
136
+
137
+ <!-- Mobile menu -->
138
+ <div class="md:hidden hidden" id="mobile-menu">
139
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
140
+ <a href="#courses" class="text-gray-800 hover:text-blue-600 block px-3 py-2 text-base font-medium">Courses</a>
141
+ <a href="#features" class="text-gray-800 hover:text-blue-600 block px-3 py-2 text-base font-medium">Features</a>
142
+ <a href="#learning-path" class="text-gray-800 hover:text-blue-600 block px-3 py-2 text-base font-medium">Paths</a>
143
+ <a href="#practice" class="text-gray-800 hover:text-blue-600 block px-3 py-2 text-base font-medium">Practice</a>
144
+ <a href="#" class="text-gray-800 hover:text-blue-600 block px-3 py-2 text-base font-medium">Log in</a>
145
+ <button class="bg-blue-600 hover:bg-blue-700 text-white w-full px-3 py-2 rounded-md text-base font-medium transition duration-300">
146
+ Sign up free
147
+ </button>
148
+ </div>
149
+ </div>
150
+ </nav>
151
+
152
+ <!-- Hero Section -->
153
+ <section class="hero-gradient text-white">
154
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24 md:py-32">
155
+ <div class="md:flex items-center">
156
+ <div class="md:w-1/2 mb-16 md:mb-0">
157
+ <div class="bg-white/10 backdrop-blur-sm inline-block px-4 py-1 rounded-full mb-6">
158
+ <span class="text-sm font-medium">Join 50,000+ learners today</span>
159
+ </div>
160
+ <h1 class="text-4xl md:text-5xl font-bold mb-6 leading-tight">Learn Coding the Right Way with <span class="text-blue-300">Interactive Courses</span></h1>
161
+ <p class="text-lg md:text-xl mb-8 opacity-90 max-w-2xl">Master in-demand programming skills with hands-on lessons, real-world projects, and our built-in coding environment.</p>
162
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
163
+ <button class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-md font-semibold text-lg transition duration-300">
164
+ Start Learning Free
165
+ </button>
166
+ <button class="border-2 border-white text-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-md font-semibold text-lg transition duration-300 flex items-center justify-center">
167
+ <i class="far fa-play-circle mr-2 text-lg"></i> Watch Demo
168
+ </button>
169
+ </div>
170
+ <div class="mt-8 flex flex-wrap gap-y-4 items-center">
171
+ <div class="flex -space-x-2 mr-4">
172
+ <img src="https://randomuser.me/api/portraits/women/43.jpg" alt="User" class="w-10 h-10 rounded-full border-2 border-white">
173
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User" class="w-10 h-10 rounded-full border-2 border-white">
174
+ <img src="https://randomuser.me/api/portraits/women/28.jpg" alt="User" class="w-10 h-10 rounded-full border-2 border-white">
175
+ </div>
176
+ <div class="bg-white/10 backdrop-blur-sm inline-block px-4 py-1 rounded-full mr-4">
177
+ <i class="fas fa-star text-yellow-300"></i>
178
+ <span class="ml-1">4.9/5 (2,500+ reviews)</span>
179
+ </div>
180
+ <div class="bg-white/10 backdrop-blur-sm inline-block px-4 py-1 rounded-full">
181
+ <i class="fas fa-graduation-cap"></i>
182
+ <span class="ml-1">10+ Courses Available</span>
183
+ </div>
184
+ </div>
185
+ </div>
186
+ <div class="md:w-1/2 relative">
187
+ <div class="bg-white/20 backdrop-blur-sm p-2 rounded-xl inline-block absolute -top-8 -left-8 shadow-lg">
188
+ <div class="bg-white p-3 rounded-lg">
189
+ <div class="flex items-center space-x-2 text-gray-800">
190
+ <i class="fas fa-check-circle text-green-500"></i>
191
+ <span class="text-sm font-medium">Interactive Lessons</span>
192
+ </div>
193
+ </div>
194
+ </div>
195
+
196
+ <div class="bg-white/20 backdrop-blur-sm p-2 rounded-xl inline-block absolute -bottom-8 -right-8 shadow-lg">
197
+ <div class="bg-white p-3 rounded-lg">
198
+ <div class="flex items-center space-x-2 text-gray-800">
199
+ <i class="fas fa-laptop-code text-blue-500"></i>
200
+ <span class="text-sm font-medium">Built-in IDE</span>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <img src="https://images.unsplash.com/photo-1555949963-ff9fe0c870eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Coding" class="rounded-xl shadow-2xl transform transition duration-500 hover:scale-105">
206
+ </div>
207
+ </div>
208
+ </div>
209
+ </section>
210
+
211
+ <!-- Popular Courses -->
212
+ <section id="courses" class="py-20 bg-white">
213
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
214
+ <div class="text-center mb-16">
215
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Popular <span class="text-gradient">Coding Courses</span></h2>
216
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">Learn programming languages and frameworks through interactive lessons with real-time feedback.</p>
217
+ </div>
218
+
219
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
220
+ <div class="bg-white border border-gray-200 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 card-hover">
221
+ <div class="h-40 bg-gradient-to-r from-blue-500 to-blue-600 flex items-center justify-center">
222
+ <i class="fab fa-js text-white text-7xl"></i>
223
+ </div>
224
+ <div class="p-6">
225
+ <div class="flex justify-between items-start mb-4">
226
+ <h3 class="text-xl font-bold text-gray-900">JavaScript Fundamentals</h3>
227
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">BEGINNER</span>
228
+ </div>
229
+ <p class="text-gray-600 mb-4">Master the basics of JavaScript, the language of the web.</p>
230
+ <div class="flex justify-between items-center">
231
+ <div class="flex items-center text-sm text-gray-500">
232
+ <i class="far fa-clock mr-1"></i>
233
+ <span>15 hours</span>
234
+ </div>
235
+ <div class="flex items-center text-sm text-gray-500">
236
+ <i class="far fa-file-alt mr-1"></i>
237
+ <span>45 lessons</span>
238
+ </div>
239
+ </div>
240
+ <button class="w-full mt-4 bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md font-medium transition duration-300">
241
+ View Course
242
+ </button>
243
+ </div>
244
+ </div>
245
+
246
+ <div class="bg-white border border-gray-200 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 card-hover">
247
+ <div class="h-40 bg-gradient-to-r from-purple-500 to-purple-600 flex items-center justify-center">
248
+ <i class="fab fa-python text-white text-7xl"></i>
249
+ </div>
250
+ <div class="p-6">
251
+ <h3 class="text-xl font-bold text-gray-900 mb-4">Python for Beginners</h3>
252
+ <p class="text-gray-600 mb-4">Learn one of the most versatile and beginner-friendly programming languages.</p>
253
+ <div class="flex justify-between items-center">
254
+ <div class="flex items-center text-sm text-gray-500">
255
+ <i class="far fa-clock mr-1"></i>
256
+ <span>20 hours</span>
257
+ </div>
258
+ <div class="flex items-center text-sm text-gray-500">
259
+ <i class="far fa-file-alt mr-1"></i>
260
+ <span>56 lessons</span>
261
+ </div>
262
+ </div>
263
+ <button class="w-full mt-4 bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md font-medium transition duration-300">
264
+ View Course
265
+ </button>
266
+ </div>
267
+ </div>
268
+
269
+ <div class="bg-white border border-gray-200 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 card-hover">
270
+ <div class="h-40 bg-gradient-to-r from-green-500 to-green-600 flex items-center justify-center">
271
+ <i class="fab fa-react text-white text-7xl"></i>
272
+ </div>
273
+ <div class="p-6">
274
+ <h3 class="text-xl font-bold text-gray-900 mb-4">React Masterclass</h3>
275
+ <p class="text-gray-600 mb-4">Build modern web applications with the most popular frontend framework.</p>
276
+ <div class="flex justify-between items-center">
277
+ <div class="flex items-center text-sm text-gray-500">
278
+ <i class="far fa-clock mr-1"></i>
279
+ <span>30 hours</span>
280
+ </div>
281
+ <div class="flex items-center text-sm text-gray-500">
282
+ <i class="far fa-file-alt mr-1"></i>
283
+ <span>72 lessons</span>
284
+ </div>
285
+ </div>
286
+ <button class="w-full mt-4 bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md font-medium transition duration-300">
287
+ View Course
288
+ </button>
289
+ </div>
290
+ </div>
291
+
292
+ <div class="bg-white border border-gray-200 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition-all duration-300 card-hover">
293
+ <div class="h-40 bg-gradient-to-r from-red-500 to-red-600 flex items-center justify-center">
294
+ <i class="fas fa-server text-white text-7xl"></i>
295
+ </div>
296
+ <div class="p-6">
297
+ <div class="flex justify-between items-start mb-4">
298
+ <h3 class="text-xl font-bold text-gray-900">Node.js Backend</h3>
299
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">ADVANCED</span>
300
+ </div>
301
+ <p class="text-gray-600 mb-4">Create scalable backend services with JavaScript on the server side.</p>
302
+ <div class="flex justify-between items-center">
303
+ <div class="flex items-center text-sm text-gray-500">
304
+ <i class="far fa-clock mr-1"></i>
305
+ <span>25 hours</span>
306
+ </div>
307
+ <div class="flex items-center text-sm text-gray-500">
308
+ <i class="far fa-file-alt mr-1"></i>
309
+ <span>60 lessons</span>
310
+ </div>
311
+ </div>
312
+ <button class="w-full mt-4 bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md font-medium transition duration-300">
313
+ View Course
314
+ </button>
315
+ </div>
316
+ </div>
317
+ </div>
318
+
319
+ <div class="text-center mt-12">
320
+ <button class="inline-flex items-center text-blue-600 font-medium group">
321
+ Browse all courses
322
+ <i class="fas fa-arrow-right ml-2 group-hover:ml-3 transition-all duration-300"></i>
323
+ </button>
324
+ </div>
325
+ </div>
326
+ </section>
327
+
328
+ <!-- Features Section -->
329
+ <section id="features" class="py-20 bg-slate-50">
330
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
331
+ <div class="text-center mb-16">
332
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Why Learn with <span class="text-gradient">CodeMaster</span></h2>
333
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">Our platform is designed to give you the best learning experience.</p>
334
+ </div>
335
+
336
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-12">
337
+ <div class="text-center">
338
+ <div class="w-16 h-16 mx-auto mb-6 flex items-center justify-center rounded-full bg-blue-100 text-blue-600 text-2xl">
339
+ <i class="fas fa-laptop-code"></i>
340
+ </div>
341
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Interactive Coding</h3>
342
+ <p class="text-gray-600">Practice coding directly in your browser with our built-in IDE and get instant feedback.</p>
343
+ </div>
344
+
345
+ <div class="text-center">
346
+ <div class="w-16 h-16 mx-auto mb-6 flex items-center justify-center rounded-full bg-purple-100 text-purple-600 text-2xl">
347
+ <i class="fas fa-project-diagram"></i>
348
+ </div>
349
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Real Projects</h3>
350
+ <p class="text-gray-600">Build portfolio-worthy projects that demonstrate your skills to potential employers.</p>
351
+ </div>
352
+
353
+ <div class="text-center">
354
+ <div class="w-16 h-16 mx-auto mb-6 flex items-center justify-center rounded-full bg-green-100 text-green-600 text-2xl">
355
+ <i class="fas fa-chart-line"></i>
356
+ </div>
357
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Progress Tracking</h3>
358
+ <p class="text-gray-600">Monitor your learning journey with detailed progress reports and skill assessments.</p>
359
+ </div>
360
+
361
+ <div class="text-center">
362
+ <div class="w-16 h-16 mx-auto mb-6 flex items-center justify-center rounded-full bg-yellow-100 text-yellow-600 text-2xl">
363
+ <i class="fas fa-users"></i>
364
+ </div>
365
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Community Support</h3>
366
+ <p class="text-gray-600">Get help from our active community of learners and experienced mentors.</p>
367
+ </div>
368
+
369
+ <div class="text-center">
370
+ <div class="w-16 h-16 mx-auto mb-6 flex items-center justify-center rounded-full bg-red-100 text-red-600 text-2xl">
371
+ <i class="fas fa-mobile-alt"></i>
372
+ </div>
373
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Mobile Friendly</h3>
374
+ <p class="text-gray-600">Learn on the go with our mobile-optimized platform and offline access.</p>
375
+ </div>
376
+
377
+ <div class="text-center">
378
+ <div class="w-16 h-16 mx-auto mb-6 flex items-center justify-center rounded-full bg-indigo-100 text-indigo-600 text-2xl">
379
+ <i class="fas fa-certificate"></i>
380
+ </div>
381
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Certificates</h3>
382
+ <p class="text-gray-600">Earn verifiable certificates to showcase your achievements to employers.</p>
383
+ </div>
384
+ </div>
385
+ </div>
386
+ </section>
387
+
388
+ <!-- Learning Paths -->
389
+ <section id="learning-path" class="py-20 bg-white">
390
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
391
+ <div class="text-center mb-16">
392
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Structured <span class="text-gradient">Learning Paths</span></h2>
393
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">Follow our expertly crafted learning paths to go from beginner to job-ready.</p>
394
+ </div>
395
+
396
+ <div class="relative learning-path max-w-3xl mx-auto">
397
+ <div class="relative mb-12 pl-10">
398
+ <div class="absolute left-0 z-10 flex items-center justify-center w-8 h-8 bg-blue-600 rounded-full">
399
+ <span class="text-white text-sm font-bold">1</span>
400
+ </div>
401
+ <div class="bg-slate-50 p-6 rounded-lg border border-gray-200 shadow-sm">
402
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Beginner Programmer</h3>
403
+ <p class="text-gray-600 mb-4">Start from scratch and learn the fundamentals of programming with Python and JavaScript.</p>
404
+ <div class="flex flex-wrap gap-2">
405
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Python Basics</span>
406
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">JavaScript Intro</span>
407
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">HTML & CSS</span>
408
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Git Fundamentals</span>
409
+ </div>
410
+ </div>
411
+ </div>
412
+
413
+ <div class="relative mb-12 pl-10">
414
+ <div class="absolute left-0 z-10 flex items-center justify-center w-8 h-8 bg-purple-600 rounded-full">
415
+ <span class="text-white text-sm font-bold">2</span>
416
+ </div>
417
+ <div class="bg-slate-50 p-6 rounded-lg border border-gray-200 shadow-sm">
418
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Frontend Developer</h3>
419
+ <p class="text-gray-600 mb-4">Master modern frontend development with React, TypeScript, and responsive design.</p>
420
+ <div class="flex flex-wrap gap-2">
421
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">React.js</span>
422
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">TypeScript</span>
423
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">CSS Frameworks</span>
424
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">Testing</span>
425
+ </div>
426
+ </div>
427
+ </div>
428
+
429
+ <div class="relative mb-12 pl-10">
430
+ <div class="absolute left-0 z-10 flex items-center justify-center w-8 h-8 bg-green-600 rounded-full">
431
+ <span class="text-white text-sm font-bold">3</span>
432
+ </div>
433
+ <div class="bg-slate-50 p-6 rounded-lg border border-gray-200 shadow-sm">
434
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Full Stack Developer</h3>
435
+ <p class="text-gray-600 mb-4">Build complete web applications with frontend and backend technologies.</p>
436
+ <div class="flex flex-wrap gap-2">
437
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Node.js</span>
438
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Express</span>
439
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Databases</span>
440
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">APIs</span>
441
+ </div>
442
+ </div>
443
+ </div>
444
+
445
+ <div class="relative pl-10">
446
+ <div class="absolute left-0 z-10 flex items-center justify-center w-8 h-8 bg-red-600 rounded-full">
447
+ <span class="text-white text-sm font-bold">4</span>
448
+ </div>
449
+ <div class="bg-slate-50 p-6 rounded-lg border border-gray-200 shadow-sm">
450
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Advanced Specializations</h3>
451
+ <p class="text-gray-600 mb-4">Dive deep into specialized areas like DevOps, Data Science, or Machine Learning.</p>
452
+ <div class="flex flex-wrap gap-2">
453
+ <span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded">Docker & Kubernetes</span>
454
+ <span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded">Data Analysis</span>
455
+ <span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded">Machine Learning</span>
456
+ <span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded">Security</span>
457
+ </div>
458
+ </div>
459
+ </div>
460
+ </div>
461
+
462
+ <div class="text-center mt-12">
463
+ <button class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-md font-semibold text-lg transition duration-300">
464
+ Choose Your Path
465
+ </button>
466
+ </div>
467
+ </div>
468
+ </section>
469
+
470
+ <!-- Coding Environment -->
471
+ <section id="practice" class="py-20 bg-slate-800 text-white">
472
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
473
+ <div class="md:flex items-center">
474
+ <div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
475
+ <h2 class="text-3xl font-bold mb-6">Practice Coding in Our <span class="text-blue-300">Built-in IDE</span></h2>
476
+ <p class="text-lg opacity-90 mb-8">Get hands-on experience with our interactive coding environment. Write, run, and debug code right in your browser with no setup required.</p>
477
+ <ul class="space-y-4 mb-8">
478
+ <li class="flex items-start">
479
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
480
+ <span>Real-time code execution with immediate feedback</span>
481
+ </li>
482
+ <li class="flex items-start">
483
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
484
+ <span>Code completion and intelligent suggestions</span>
485
+ </li>
486
+ <li class="flex items-start">
487
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
488
+ <span>Built-in debugging tools and error detection</span>
489
+ </li>
490
+ <li class="flex items-start">
491
+ <i class="fas fa-check-circle text-green-400 mt-1 mr-3"></i>
492
+ <span>100+ coding challenges with automated testing</span>
493
+ </li>
494
+ </ul>
495
+ <button class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-md font-semibold text-lg transition duration-300">
496
+ Try Our Code Editor
497
+
498
+ </html>