Find Your Perfect Online Course

Overwhelmed by the thousands of online courses available? This quiz helps you cut through the noise and find the perfect learning path. Answer questions about your learning goals (career change, skill upgrade, certification, hobby), preferred subject area, current skill level, learning style preferences, time commitment, and budget. The quiz analyzes your responses to recommend the best platforms (Coursera, Udemy, LinkedIn Learning, Skillshare, edX, MasterClass) and suggests specific courses to start with. Whether you're looking to learn programming, business skills, creative arts, or personal development, get a customized learning roadmap.

Product Match

Try the Quiz

🎓 Find Your Perfect Online Course
What do you want to achieve with online learning?
 
Help us recommend the right difficulty level
 
 
Everyone learns differently - let's find what works for you
 
How much time can you dedicate to learning?
5hours/week
5 hours/week
120
 
 
Let's find options that fit your budget
 
 
Here are the best platforms and courses for you
🏆 Top Pick: Coursera
Great all-around platform Price: $49/month
🎯 Other Great Options
 
📚 Recommended Courses to Start
1. Python for Everybody 2. Google IT Support 3. Web Development Bootcamp
Receive your personalized course recommendations with a detailed study plan
 
 
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
export function onlineCourseFinderQuiz(form: FormTs) {
form.setTitle(() => '🎓 Find Your Perfect Online Course');
 
// ============ RECOMMENDATION SYSTEM ============
const answers = form.state<Record<string, string | string[] | number>>({});
 
const setAnswer = (key: string, value: string | string[] | number) => {
answers.update(current => ({ ...current, [key]: value }));
};
 
type LearningGoal = 'career-change' | 'skill-upgrade' | 'hobby' | 'certification' | 'business';
type LearningStyle = 'video' | 'reading' | 'hands-on' | 'mixed';
type Platform = 'coursera' | 'udemy' | 'linkedin' | 'skillshare' | 'masterclass' | 'edx';
 
const getPlatformRecommendations = (): { platform: Platform; name: string; reason: string; price: string }[] => {
const goal = answers()['learningGoal'] as LearningGoal;
const style = answers()['learningStyle'] as LearningStyle;
const budget = answers()['budget'] as string;
const category = answers()['category'] as string;
 
const platforms: { platform: Platform; name: string; reason: string; price: string; score: number }[] = [];
 
// Career-focused platforms
if (goal === 'career-change' || goal === 'certification') {
platforms.push({
platform: 'coursera',
name: 'Coursera',
reason: 'University-backed certificates recognized by employers',
price: '$49-79/month or $399/year',
score: 95
});
platforms.push({
platform: 'edx',
name: 'edX',
reason: 'Harvard, MIT certificates for career advancement',
price: '$50-300 per certificate',
score: 90
});
platforms.push({
platform: 'linkedin',
name: 'LinkedIn Learning',
reason: 'Certificates display directly on your LinkedIn profile',
price: '$29.99/month',
score: 85
});
}
 
// Skill upgrade
if (goal === 'skill-upgrade' || goal === 'business') {
platforms.push({
platform: 'udemy',
name: 'Udemy',
reason: 'Practical, hands-on courses with lifetime access',
price: '$12-200 per course (frequent sales)',
score: 88
});
platforms.push({
platform: 'linkedin',
name: 'LinkedIn Learning',
reason: '16,000+ professional development courses',
price: '$29.99/month',
score: 85
});
}
 
// Creative/hobby
if (goal === 'hobby' || category === 'creative') {
platforms.push({
platform: 'skillshare',
name: 'Skillshare',
reason: 'Best for creative skills with project-based learning',
price: '$13.99/month annually',
score: 92
});
platforms.push({
platform: 'masterclass',
name: 'MasterClass',
reason: 'Learn from world-famous experts and celebrities',
price: '$180/year',
score: 80
});
}
 
// Budget considerations
if (budget === 'free') {
platforms.push({
platform: 'coursera',
name: 'Coursera (Audit)',
reason: 'Free access to course content without certificate',
price: 'Free (audit mode)',
score: 75
});
platforms.push({
platform: 'edx',
name: 'edX (Audit)',
reason: 'Free access to world-class education',
price: 'Free (audit mode)',
score: 75
});
}
 
// Sort by score and return top 3
return platforms
.sort((a, b) => b.score - a.score)
.slice(0, 3)
.map(({ platform, name, reason, price }) => ({ platform, name, reason, price }));
};
 
const getTopRecommendation = () => {
const recs = getPlatformRecommendations();
return recs[0] || { name: 'Coursera', reason: 'Great all-around platform', price: '$49/month' };
};
 
const getCourseRecommendations = () => {
const category = answers()['category'] as string;
const level = answers()['skillLevel'] as string;
 
const courses: Record<string, { beginner: string[]; intermediate: string[]; advanced: string[] }> = {
tech: {
beginner: ['Python for Everybody', 'Google IT Support', 'Web Development Bootcamp'],
intermediate: ['AWS Cloud Practitioner', 'Full Stack Development', 'Data Science Specialization'],
advanced: ['Machine Learning by Stanford', 'System Design', 'Cloud Architecture']
},
business: {
beginner: ['Business Foundations', 'Digital Marketing', 'Excel Skills for Business'],
intermediate: ['MBA Essentials', 'Product Management', 'Business Analytics'],
advanced: ['Strategic Leadership', 'Corporate Finance', 'Business Strategy']
},
creative: {
beginner: ['Graphic Design Basics', 'Photography Fundamentals', 'Intro to UX Design'],
intermediate: ['Advanced Photoshop', 'Motion Graphics', 'UX Research'],
advanced: ['Brand Identity Design', 'Creative Direction', '3D Animation']
},
personal: {
beginner: ['Learning How to Learn', 'Mindfulness', 'Public Speaking'],
intermediate: ['Emotional Intelligence', 'Negotiation Skills', 'Speed Reading'],
advanced: ['Executive Presence', 'Thought Leadership', 'Life Coaching Certification']
}
};
 
const categoryCourses = courses[category] || courses['tech'];
return categoryCourses[level as keyof typeof categoryCourses] || categoryCourses['beginner'];
};
 
// ============ COMPLETION SCREEN ============
form.configureCompletionScreen({
type: 'text',
title: () => '🎓 Your Learning Path Is Ready!',
message: () => {
const top = getTopRecommendation();
return `Based on your goals, we recommend ${top.name}. Download your complete learning guide with course recommendations and study plan!`;
}
});
 
// ============ PAGES SETUP ============
const pages = form.addPages('quiz-pages', {
heightMode: 'current-page'
});
 
// ============ PAGE 1: Learning Goals ============
const page1 = pages.addPage('goals', { mobileBreakpoint: 500 });
 
page1.addRow(row => {
row.addTextPanel('header1', {
label: 'Step 1 of 6: Your Learning Goals',
computedValue: () => 'What do you want to achieve with online learning?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page1.addSpacer({ height: '24px' });
 
page1.addRow(row => {
row.addRadioButton('learningGoal', {
label: 'What\'s your primary learning goal?',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'career-change', name: '🔄 Career Change - Switch to a new field' },
{ id: 'skill-upgrade', name: '📈 Skill Upgrade - Advance in current role' },
{ id: 'certification', name: '📜 Certification - Get credentials for my resume' },
{ id: 'business', name: '💼 Business - Start or grow my own business' },
{ id: 'hobby', name: '🎨 Personal Interest - Learn for fun' }
],
onValueChange: (val) => setAnswer('learningGoal', val || '')
});
});
 
page1.addRow(row => {
row.addDropdown('category', {
label: 'What area interests you most?',
isRequired: true,
options: [
{ id: 'tech', name: '💻 Technology & Programming' },
{ id: 'business', name: '📊 Business & Management' },
{ id: 'creative', name: '🎨 Creative & Design' },
{ id: 'personal', name: '🧠 Personal Development' },
{ id: 'data', name: '📈 Data & Analytics' },
{ id: 'marketing', name: '📱 Marketing & Social Media' }
],
placeholder: 'Select a category',
onValueChange: (val) => setAnswer('category', val || '')
});
});
 
// ============ PAGE 2: Current Level ============
const page2 = pages.addPage('level', { mobileBreakpoint: 500 });
 
page2.addRow(row => {
row.addTextPanel('header2', {
label: 'Step 2 of 6: Your Current Level',
computedValue: () => 'Help us recommend the right difficulty level',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page2.addSpacer({ height: '24px' });
 
page2.addRow(row => {
row.addRadioButton('skillLevel', {
label: 'What\'s your experience level in this area?',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'beginner', name: '🌱 Beginner - New to this topic' },
{ id: 'intermediate', name: '🌿 Intermediate - Some experience/knowledge' },
{ id: 'advanced', name: '🌳 Advanced - Looking to master/specialize' }
],
onValueChange: (val) => setAnswer('skillLevel', val || '')
});
});
 
page2.addRow(row => {
row.addRadioButton('priorLearning', {
label: 'Have you taken online courses before?',
isRequired: true,
orientation: 'horizontal',
options: [
{ id: 'none', name: 'Never' },
{ id: 'few', name: 'A few courses' },
{ id: 'many', name: 'Many courses' }
],
onValueChange: (val) => setAnswer('priorLearning', val || '')
});
});
 
// ============ PAGE 3: Learning Style ============
const page3 = pages.addPage('style', { mobileBreakpoint: 500 });
 
page3.addRow(row => {
row.addTextPanel('header3', {
label: 'Step 3 of 6: Learning Style',
computedValue: () => 'Everyone learns differently - let\'s find what works for you',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page3.addSpacer({ height: '24px' });
 
page3.addRow(row => {
row.addRadioButton('learningStyle', {
label: 'How do you learn best?',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'video', name: '🎬 Video lectures - Watch and learn' },
{ id: 'reading', name: '📚 Reading - Articles and documentation' },
{ id: 'hands-on', name: '🛠️ Hands-on - Projects and exercises' },
{ id: 'mixed', name: '🎯 Mixed - Combination of all' }
],
onValueChange: (val) => setAnswer('learningStyle', val || '')
});
});
 
page3.addRow(row => {
row.addSuggestionChips('features', {
label: 'What features are important to you?',
suggestions: [
{ id: 'certificates', name: '📜 Certificates' },
{ id: 'projects', name: '🛠️ Hands-on Projects' },
{ id: 'community', name: '👥 Community/Forums' },
{ id: 'mentorship', name: '🧑‍🏫 Mentorship' },
{ id: 'mobile', name: '📱 Mobile App' },
{ id: 'offline', name: '📥 Offline Access' }
],
alignment: 'left',
onValueChange: (val) => setAnswer('features', val || [])
});
});
 
// ============ PAGE 4: Time & Commitment ============
const page4 = pages.addPage('time', { mobileBreakpoint: 500 });
 
page4.addRow(row => {
row.addTextPanel('header4', {
label: 'Step 4 of 6: Time Commitment',
computedValue: () => 'How much time can you dedicate to learning?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page4.addSpacer({ height: '24px' });
 
page4.addRow(row => {
row.addSlider('hoursPerWeek', {
label: 'Hours per week you can commit',
isRequired: true,
min: 1,
max: 20,
step: 1,
defaultValue: 5,
unit: 'hours/week',
onValueChange: (val) => setAnswer('hoursPerWeek', val || 5)
});
});
 
page4.addRow(row => {
row.addRadioButton('timeline', {
label: 'When do you want to complete your learning?',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'asap', name: '⚡ ASAP - Intensive learning' },
{ id: '3months', name: '📅 3 months' },
{ id: '6months', name: '📆 6 months' },
{ id: 'flexible', name: '🎯 No deadline - Self-paced' }
],
onValueChange: (val) => setAnswer('timeline', val || '')
});
});
 
page4.addRow(row => {
row.addRadioButton('structure', {
label: 'Do you prefer structured or self-paced learning?',
isRequired: true,
orientation: 'horizontal',
options: [
{ id: 'structured', name: 'Structured (deadlines)' },
{ id: 'selfpaced', name: 'Self-paced' },
{ id: 'either', name: 'Either works' }
],
onValueChange: (val) => setAnswer('structure', val || '')
});
});
 
// ============ PAGE 5: Budget ============
const page5 = pages.addPage('budget', { mobileBreakpoint: 500 });
 
page5.addRow(row => {
row.addTextPanel('header5', {
label: 'Step 5 of 6: Budget',
computedValue: () => 'Let\'s find options that fit your budget',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page5.addSpacer({ height: '24px' });
 
page5.addRow(row => {
row.addRadioButton('budget', {
label: 'What\'s your learning budget?',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'free', name: '🆓 Free only' },
{ id: 'low', name: '💵 Under $50/month' },
{ id: 'medium', name: '💰 $50-100/month' },
{ id: 'high', name: '💎 $100+/month or willing to invest in quality' }
],
onValueChange: (val) => setAnswer('budget', val || '')
});
});
 
page5.addRow(row => {
row.addRadioButton('paymentPreference', {
label: 'Payment preference?',
isRequired: true,
orientation: 'horizontal',
options: [
{ id: 'subscription', name: 'Monthly subscription' },
{ id: 'onetime', name: 'One-time purchase' },
{ id: 'either', name: 'Either works' }
],
onValueChange: (val) => setAnswer('paymentPreference', val || '')
});
});
 
// ============ PAGE 6: Results ============
const page6 = pages.addPage('results', { mobileBreakpoint: 500 });
 
page6.addRow(row => {
row.addTextPanel('header6', {
label: 'Step 6 of 6: Your Recommendations',
computedValue: () => 'Here are the best platforms and courses for you',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page6.addSpacer({ height: '24px' });
 
page6.addRow(row => {
row.addTextPanel('topPick', {
computedValue: () => {
const top = getTopRecommendation();
return `🏆 Top Pick: ${top.name}`;
},
customStyles: {
fontSize: '1.4rem',
fontWeight: '700',
textAlign: 'center',
color: '#7c3aed',
padding: '20px',
background: 'linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%)',
borderRadius: '12px',
border: '2px solid #a78bfa'
}
});
});
 
page6.addRow(row => {
row.addTextPanel('topPickReason', {
computedValue: () => {
const top = getTopRecommendation();
return `${top.reason}\nPrice: ${top.price}`;
},
customStyles: {
fontSize: '0.95rem',
textAlign: 'center',
color: '#4b5563',
whiteSpace: 'pre-line',
marginTop: '0.5rem'
}
});
});
 
// Alternative platforms
const alternativesSection = page6.addSubform('alternatives', {
title: '🎯 Other Great Options',
isCollapsible: true,
customStyles: {
marginTop: '1rem',
background: '#f9fafb',
borderRadius: '8px'
}
});
 
alternativesSection.addRow(row => {
row.addTextPanel('otherPlatforms', {
computedValue: () => {
const recs = getPlatformRecommendations();
return recs.slice(1).map((r, i) => `${i + 2}. ${r.name} - ${r.reason} (${r.price})`).join('\n\n');
},
customStyles: {
fontSize: '0.9rem',
whiteSpace: 'pre-line',
lineHeight: '1.6'
}
});
});
 
// Recommended courses
const coursesSection = page6.addSubform('courses', {
title: '📚 Recommended Courses to Start',
isCollapsible: true,
customStyles: {
marginTop: '1rem',
background: '#ecfdf5',
borderRadius: '8px'
}
});
 
coursesSection.addRow(row => {
row.addTextPanel('courseList', {
computedValue: () => {
const courses = getCourseRecommendations();
return courses.map((c, i) => `${i + 1}. ${c}`).join('\n');
},
customStyles: {
fontSize: '0.9rem',
whiteSpace: 'pre-line',
lineHeight: '1.8'
}
});
});
 
// ============ PAGE 7: Lead Capture ============
const page7 = pages.addPage('lead-capture', { mobileBreakpoint: 500 });
 
page7.addRow(row => {
row.addTextPanel('header7', {
label: 'Get Your Complete Learning Guide',
computedValue: () => 'Receive your personalized course recommendations with a detailed study plan',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page7.addSpacer({ height: '24px' });
 
page7.addRow(row => {
row.addTextbox('name', {
label: 'Your Name',
isRequired: true,
placeholder: 'Alex Chen'
}, '1fr');
 
row.addEmail('email', {
label: 'Email Address',
isRequired: true,
placeholder: 'alex@email.com'
}, '1fr');
});
 
page7.addRow(row => {
row.addCheckboxList('consent', {
options: [
{ id: 'guide', name: '📧 Send me my personalized learning guide (PDF)', isRequired: true },
{ id: 'tips', name: '💡 Weekly learning tips and course recommendations' },
{ id: 'deals', name: '🏷️ Course deals and discount alerts' }
],
defaultValue: ['guide'],
orientation: 'vertical'
});
});
 
// ============ PDF REPORT ============
form.configurePdf('learning-report', pdf => {
pdf.configure({
filename: 'your-learning-guide.pdf',
pageSize: 'A4',
allowUserDownload: true,
downloadButtonLabel: '📄 Download Learning Guide',
header: {
title: 'Your Personalized Learning Guide',
subtitle: 'Custom course and platform recommendations'
},
footer: {
text: 'Generated by FormTs Course Finder',
showPageNumbers: true
}
});
 
pdf.addSection('Your Learning Profile', section => {
section.addRow(row => {
row.addField('Learning Goal', (answers()['learningGoal'] as string) || 'Not specified');
row.addField('Category', (answers()['category'] as string) || 'Not specified');
});
section.addRow(row => {
row.addField('Skill Level', (answers()['skillLevel'] as string) || 'Not specified');
row.addField('Hours/Week', `${answers()['hoursPerWeek'] || 5} hours`);
});
});
 
pdf.addSection('Platform Recommendations', section => {
const recs = getPlatformRecommendations();
section.addTable(
['Rank', 'Platform', 'Why It\'s Great For You', 'Price'],
recs.map((r, i) => [`#${i + 1}`, r.name, r.reason, r.price])
);
});
 
pdf.addSection('Recommended Courses', section => {
const courses = getCourseRecommendations();
courses.forEach((c, i) => section.addText(`${i + 1}. ${c}`));
});
 
pdf.addSection('Your Study Plan', section => {
const hours = (answers()['hoursPerWeek'] as number) || 5;
section.addText(`With ${hours} hours per week, here's your suggested schedule:`);
section.addText(`• Week 1-2: Platform setup and first module`);
section.addText(`• Week 3-4: Complete fundamentals`);
section.addText(`• Week 5-8: Deep dive into core content`);
section.addText(`• Week 9-12: Projects and practical application`);
});
});
 
// ============ SUBMIT BUTTON ============
form.configureSubmitButton({
label: () => '🎓 Get My Learning Guide'
});
 
form.configureSubmitBehavior({
sendToServer: true
});
}
 

Frequently Asked Questions

Which online learning platform is best for career advancement?

For career advancement with recognized credentials, Coursera and edX offer university-backed certificates. LinkedIn Learning certificates display directly on your profile. The best choice depends on your industry - tech roles often value practical Udemy courses, while corporate roles may prefer LinkedIn Learning or Coursera Professional Certificates.

Are free online courses worth it?

Yes! Many platforms offer free audit access to course content. Coursera and edX let you access all materials for free - you only pay for the certificate. This is great for learning; you can always purchase the certificate later if needed for your resume.

How do I stay motivated with online learning?

Choose courses that match your learning style, set specific weekly study times, join course communities or study groups, track your progress visibly, and choose courses with hands-on projects. Starting with shorter courses builds momentum before tackling longer programs.

Should I choose subscription or one-time purchase courses?

Subscriptions (Coursera Plus, LinkedIn Learning, Skillshare) are cost-effective if you plan to take multiple courses. One-time purchases (Udemy, individual Coursera courses) work better for specific skills or if you prefer lifetime access without ongoing payments.

Do employers value online course certificates?

Increasingly yes, especially from recognized institutions. Google, IBM, and Meta certificates on Coursera are well-regarded in tech. However, demonstrable skills and portfolio projects often matter more than certificates alone. Use courses to build real projects you can showcase.