-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
1050 lines (1021 loc) Β· 40.4 KB
/
Copy pathindex.html
File metadata and controls
1050 lines (1021 loc) Β· 40.4 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
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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
DevRoadmaps β Free Developer Roadmaps with 920+ Topics | Learn
Programming, AI, DevOps & More
</title>
<meta
name="description"
content="Free open-source developer roadmaps for 20 tech paths including Frontend, Backend, DevOps, AI/ML, Cybersecurity, Platform Engineering, SRE and more. 920+ curated topics with 2000+ free resources."
/>
<meta
name="keywords"
content="developer roadmap, learn programming, frontend roadmap, backend roadmap, full stack roadmap, devops roadmap, AI ML roadmap, cybersecurity roadmap, platform engineering, SRE, AR VR, free resources, open source, interactive roadmaps"
/>
<link rel="canonical" href="https://rudra496.github.io/devroadmaps/" />
<meta
property="og:title"
content="DevRoadmaps β Free Developer Roadmaps with 920+ Topics"
/>
<meta
property="og:description"
content="Free open-source developer roadmaps for 20 tech paths. 920+ curated topics with 2000+ free resources."
/>
<meta property="og:url" content="https://rudra496.github.io/devroadmaps/" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="DevRoadmaps β Free Developer Roadmaps with 920+ Topics"
/>
<meta
name="twitter:description"
content="Free open-source developer roadmaps for 20 tech paths. 920+ curated topics with 2000+ free resources."
/>
<meta name="twitter:creator" content="@rudra496" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "DevRoadmaps",
"url": "https://rudra496.github.io/devroadmaps/",
"description": "Free open-source developer roadmaps for 20 tech paths including Frontend, Backend, DevOps, AI/ML, Cybersecurity, Platform Engineering, SRE and more. 920+ curated topics with 2000+ free resources.",
"author": {
"@type": "Person",
"name": "Rudra Sarker",
"url": "https://github.com/rudra496"
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://rudra496.github.io/devroadmaps/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "EducationalOrganization",
"name": "DevRoadmaps",
"url": "https://rudra496.github.io/devroadmaps/",
"description": "Interactive developer roadmaps covering 20 tech paths with progress tracking, daily challenges, skill assessments, and interview prep.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"numberOfCourses": "20"
}
</script>
<link rel="stylesheet" href="css/style.css" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>πΊοΈ</text></svg>"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<script>
// Check local storage or system preference
if (
localStorage.getItem("color-theme") === "dark" ||
(!("color-theme" in localStorage) &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
document.documentElement.setAttribute("data-theme", "dark");
} else {
document.documentElement.classList.remove("dark");
document.documentElement.setAttribute("data-theme", "light");
}
</script>
<script defer src="https://analytics.129-159-229-170.sslip.io/script.js" data-website-id="4072fdeb-a0a9-42b1-b200-6d95ab7f6fe8"></script>
</head>
<body>
<!-- Particle Canvas -->
<canvas id="particles"></canvas>
<!-- Floating Geometric Shapes -->
<div class="floating-shapes" aria-hidden="true">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
<div class="shape shape-4"></div>
<div class="shape shape-5"></div>
<div class="shape shape-6"></div>
</div>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<a href="index.html" class="nav-logo"
>πΊοΈ <span class="logo-text">DevRoadmaps</span></a
>
<div class="nav-links" id="navLinks">
<a href="#roadmaps">Roadmaps</a>
<a href="#features">Features</a>
<a href="#daily-challenge-section">Challenges</a>
<a href="#projects-section">Projects</a>
<a href="#interview-section">Interview</a>
<a href="#certifications">Certifications</a>
<a href="#faq">FAQ</a>
<a
href="https://github.com/rudra496/devroadmaps"
target="_blank"
rel="noopener"
class="nav-cta"
>β Star on GitHub</a
>
<span class="nav-badge" id="bookmarkToggle" title="Bookmarks"
>π <span class="bookmark-count">0</span></span
>
<span class="nav-badge" title="Total Study Time"
>β±οΈ <span class="total-study-time">0m 0s</span></span
>
<button
id="theme-toggle"
type="button"
class="flex items-center justify-center w-10 h-10 ml-2 rounded-lg border border-gray-200 dark:border-gray-700 hover:bg-gray-100 dark:hover:bg-gray-800 transition-all duration-300"
>
<span id="theme-toggle-dark-icon" class="hidden text-xl">π</span>
<span id="theme-toggle-light-icon" class="hidden text-xl">βοΈ</span>
</button>
</div>
<button class="hamburger" id="hamburger" aria-label="Toggle menu">
<span></span><span></span><span></span>
</button>
</div>
</nav>
<!-- Hero Section -->
<header class="hero" id="hero">
<div class="hero-bg-mesh" aria-hidden="true"></div>
<div class="hero-content">
<div class="hero-badge animate-on-scroll">π Free & Open Source</div>
<h1 class="hero-title animate-on-scroll">
<span class="gradient-text">Developer Roadmaps</span>
</h1>
<p class="hero-typing animate-on-scroll" id="typingTarget"></p>
<p class="hero-desc animate-on-scroll">
920+ curated topics with 2,000+ free resources across 20 roadmaps.
Interactive progress tracking, daily challenges, skill radar, command palette, bookmarks, community tips, study timer, and achievement badges to guide your journey.
</p>
<div class="hero-buttons animate-on-scroll">
<a href="#roadmaps" class="btn btn-primary btn-glow"
>Explore Roadmaps β</a
>
<a
href="https://github.com/rudra496/devroadmaps"
target="_blank"
class="btn btn-secondary"
>View on GitHub β</a
>
</div>
<p class="hero-desc animate-on-scroll" style="font-size: 0.85rem; opacity: 0.7; margin-top: 12px;">
Press <span class="kbd">Ctrl</span> + <span class="kbd">K</span> to open the command palette
</p>
<div class="hero-stats animate-on-scroll">
<div class="stat-item">
<span class="stat-number" data-target="20">0</span>
<span class="stat-label">Roadmaps</span>
</div>
<div class="stat-divider"></div>
<div class="stat-item">
<span class="stat-number" data-target="920">0</span>
<span class="stat-label">Topics</span>
</div>
<div class="stat-divider"></div>
<div class="stat-item">
<span class="stat-number" data-target="2000">0</span
><span class="stat-suffix">+</span>
<span class="stat-label">Resources</span>
</div>
<div class="stat-divider"></div>
<div class="stat-item">
<span class="stat-number" data-target="100">0</span
><span class="stat-suffix">%</span>
<span class="stat-label">Free</span>
</div>
</div>
</div>
<div class="hero-scroll-indicator" aria-hidden="true">
<div class="scroll-arrow"></div>
</div>
</header>
<!-- Roadmaps Grid -->
<section class="section" id="roadmaps">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">πΊοΈ Roadmaps</span>
<h2 class="section-title">Choose Your Path</h2>
<p class="section-subtitle">
20 comprehensive roadmaps covering every major tech discipline
</p>
</div>
<!-- Search & Filter -->
<div class="roadmap-filters animate-on-scroll">
<div class="search-box-hero">
<span class="search-icon">π</span>
<input
type="text"
id="roadmapSearch"
placeholder="Search roadmaps..."
autocomplete="off"
/>
</div>
<div class="filter-pills" id="difficultyFilters">
<button class="pill active" data-diff="all">All</button>
<button class="pill" data-diff="beginner">Beginner</button>
<button class="pill" data-diff="intermediate">Intermediate</button>
<button class="pill" data-diff="advanced">Advanced</button>
</div>
</div>
<div class="roadmaps-grid" id="roadmapsGrid">
<!-- Populated by JS -->
</div>
</div>
</section>
<!-- Features -->
<section class="section section-alt" id="features">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">β¨ Features</span>
<h2 class="section-title">Why DevRoadmaps?</h2>
<p class="section-subtitle">
Everything you need to master your craft, completely free
</p>
</div>
<div class="features-grid">
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π―</span>
</div>
<h3>Interactive Nodes</h3>
<p>
Click any topic to expand details, mark as complete, and track
your progress visually.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π</span>
</div>
<h3>1,700+ Free Resources</h3>
<p>
Curated links to MDN, freeCodeCamp, official docs, YouTube
tutorials, and more.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π</span>
</div>
<h3>Track Progress</h3>
<p>
Your progress is saved locally. Come back anytime and pick up
where you left off.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π</span>
</div>
<h3>Search & Filter</h3>
<p>
Search within roadmaps and filter by category β fundamentals,
intermediate, advanced, tools.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π¨οΈ</span>
</div>
<h3>Print as Poster</h3>
<p>
Print any roadmap as a beautiful poster for your wall. Perfect for
study planning.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>β¨οΈ</span>
</div>
<h3>Keyboard Navigation</h3>
<p>
Navigate with arrow keys, press Enter to expand, Space to mark
complete.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π</span>
</div>
<h3>Dark & Light Mode</h3>
<p>
Beautiful in both themes. Your preference is remembered across
visits.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π±</span>
</div>
<h3>Fully Responsive</h3>
<p>
Works perfectly on desktop, tablet, and mobile. Learn anywhere.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>β¨οΈ</span>
</div>
<h3>Command Palette</h3>
<p>
Press Ctrl+K to quickly jump to any roadmap, feature, or action. Power-user friendly.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π―</span>
</div>
<h3>Daily Challenges</h3>
<p>
Solve a new coding challenge every day. Build your streak and stay consistent.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π</span>
</div>
<h3>Skill Radar</h3>
<p>
Visual radar chart showing your progress across all skill areas at a glance.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π¨</span>
</div>
<h3>Project Ideas</h3>
<p>
Curated project ideas for each roadmap to apply what you've learned hands-on.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π€</span>
</div>
<h3>Interview Prep</h3>
<p>
Practice with curated interview questions and answers for each career path.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>πΈ</span>
</div>
<h3>Share Progress Cards</h3>
<p>
Generate beautiful PNG cards of your progress to share on social media.
</p>
</div>
<div class="feature-card animate-on-scroll">
<div class="feature-icon-wrap">
<span>π</span>
</div>
<h3>Learning Notes</h3>
<p>
Write personal notes for each roadmap. Your private learning journal, stored locally.
</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="section" id="testimonials">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">π¬ Testimonials</span>
<h2 class="section-title">What People Are Saying</h2>
<p class="section-subtitle">
Share your experience β open a GitHub discussion or tag us on X
</p>
</div>
<div class="testimonials-cta animate-on-scroll">
<div class="testimonial-placeholder">
<div class="placeholder-icon">π¬</div>
<h3>Be the first to share your story!</h3>
<p>
Used DevRoadmaps to learn something new? We'd love to hear about it.
Open an issue or discussion on GitHub with your testimonial and
it may be featured here.
</p>
<a
href="https://github.com/rudra496/devroadmaps/issues/new?template=feature_request.md&title=Testimonial:"
target="_blank"
class="btn btn-primary"
>Share Your Story</a
>
</div>
</div>
</div>
</section>
<!-- Community -->
<section class="section section-alt" id="community">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">π€ Community</span>
<h2 class="section-title">Built by the Community</h2>
<p class="section-subtitle">
Open source, community driven, and collaborative
</p>
</div>
<div class="community-grid animate-on-scroll">
<div class="community-stat">
<div class="community-icon">πΊοΈ</div>
<div class="community-number">20</div>
<div class="community-label">Roadmaps</div>
</div>
<div class="community-stat">
<div class="community-icon">π</div>
<div class="community-number">920+</div>
<div class="community-label">Topics</div>
</div>
<div class="community-stat">
<div class="community-icon">π</div>
<div class="community-number">2,000+</div>
<div class="community-label">Free Resources</div>
</div>
<div class="community-stat">
<div class="community-icon">π</div>
<div class="community-number">Share Tips</div>
<div class="community-label">Community Tips</div>
</div>
<div class="community-stat">
<div class="community-icon">β</div>
<div class="community-number">Rate</div>
<div class="community-label">Resources</div>
</div>
<div class="community-stat">
<div class="community-icon">π</div>
<div class="community-number">MIT</div>
<div class="community-label">License</div>
</div>
<div class="community-stat">
<div class="community-icon">π€</div>
<div class="community-number">
<a href="https://github.com/rudra496/devroadmaps/fork" target="_blank" style="color: inherit; text-decoration: none"
>Contribute</a
>
</div>
<div class="community-label">Open Source</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="section newsletter-section">
<div class="container">
<div class="newsletter-card animate-on-scroll">
<div class="newsletter-content">
<h2>π¬ Stay Updated</h2>
<p>
Watch the repo on GitHub to get notified about new roadmaps, resources, and features.
</p>
</div>
<div class="newsletter-form">
<a
href="https://github.com/rudra496/devroadmaps/subscription"
target="_blank"
class="btn btn-primary"
style="text-align: center; display: inline-flex"
>Watch on GitHub π</a
>
</div>
</div>
</div>
</section>
<!-- FAQ -->
<section class="section section-alt" id="faq">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">β FAQ</span>
<h2 class="section-title">Frequently Asked Questions</h2>
</div>
<div class="faq-list">
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Is this really free? <span>+</span>
</button>
<div class="faq-answer">
<p>
Yes! 100% free and open source. Every resource linked is free.
No hidden paywalls, no premium tier. We believe education should
be accessible to everyone.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
How is my progress saved? <span>+</span>
</button>
<div class="faq-answer">
<p>
Progress is saved in your browser's localStorage. No account
needed, no data sent to any server. Clear your browser data to
reset progress.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
How is this different from other roadmap resources? <span>+</span>
</button>
<div class="faq-answer">
<p>
We offer 20 complete roadmaps with 920+ topics, community tips,
resource ratings, resource type filtering, daily challenges, skill radar,
project ideas, interview prep, interactive progress
tracking, search/filter, print-as-poster, keyboard navigation,
and everything is free and open-source with zero dependencies.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Can I contribute? <span>+</span>
</button>
<div class="faq-answer">
<p>
Absolutely! Check out our CONTRIBUTING.md for guidelines. You
can add nodes, fix resources, or suggest new roadmaps via pull
request.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Are the resource links verified? <span>+</span>
</button>
<div class="faq-answer">
<p>
We use stable, well-known resources (MDN, freeCodeCamp, official
docs, popular YouTube channels). Links are periodically verified
and PRs welcome to fix any broken ones.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Do I need to create an account? <span>+</span>
</button>
<div class="faq-answer">
<p>
Nope! Everything works without an account. Progress is stored in
your browser. Just open the page and start learning.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Can I use this offline? <span>+</span>
</button>
<div class="faq-answer">
<p>
The roadmap viewer and progress tracking work offline once
loaded. Resource links require internet, but you can print
roadmaps for offline reference.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Which roadmaps are available? <span>+</span>
</button>
<div class="faq-answer">
<p>
Frontend, Backend, Full Stack, ML/AI, DevOps/Cloud, Mobile,
Cybersecurity, Data Engineering, Blockchain/Web3, Game Dev,
Embedded/IoT, Product Management, DevSecOps, QA Engineer,
Technical Writer, Low-Code/No-Code, Cloud Architect,
Platform Engineer, Site Reliability Engineer, and AR/VR Developer.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
How long does it take to complete a roadmap? <span>+</span>
</button>
<div class="faq-answer">
<p>
It varies! A beginner roadmap might take 3-6 months studying
part-time. Advanced roadmaps could take 6-12 months. The key is
consistency.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Is this suitable for absolute beginners? <span>+</span>
</button>
<div class="faq-answer">
<p>
Yes! Each roadmap starts from fundamentals and progresses to
advanced topics. The difficulty badges help you know where to
start.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Can I print the roadmaps? <span>+</span>
</button>
<div class="faq-answer">
<p>
Yes! Click the Print button on any roadmap page. It generates a
clean, print-friendly layout. Great for wall posters or study
notes.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
What tech stack is this built with? <span>+</span>
</button>
<div class="faq-answer">
<p>
Vanilla HTML, CSS, and JavaScript. No frameworks, no build
tools, no dependencies. Just open index.html in any browser.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
How do I switch between dark and light mode? <span>+</span>
</button>
<div class="faq-answer">
<p>
Click the theme icon in the bottom-left corner to cycle through
Dark β Light β Auto (follows system preference). Your choice is
saved and persisted across visits.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Can I suggest a new roadmap? <span>+</span>
</button>
<div class="faq-answer">
<p>
Absolutely! Open an issue on GitHub with your suggestion. If
there's enough interest, we'll add it. You can also submit a PR
with the JSON data.
</p>
</div>
</div>
<div class="faq-item animate-on-scroll">
<button class="faq-question">
Is my data private? <span>+</span>
</button>
<div class="faq-answer">
<p>
Completely. All data stays in your browser. We don't use
cookies, analytics, or any tracking. Your learning is your
business.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Daily Challenge -->
<section class="section section-alt" id="daily-challenge-section">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">π― Daily Challenge</span>
<h2 class="section-title">Today's Challenge</h2>
<p class="section-subtitle">
Solve a new coding challenge every day and build your streak
</p>
</div>
<div id="daily-challenge" class="animate-on-scroll"></div>
</div>
</section>
<!-- Skill Radar -->
<section class="section" id="skill-radar-section">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">π Skill Assessment</span>
<h2 class="section-title">Your Skill Radar</h2>
<p class="section-subtitle">
Visual overview of your progress across all skill areas
</p>
</div>
<div id="skill-radar" class="animate-on-scroll"></div>
</div>
</section>
<!-- Compare Roadmaps -->
<section class="section section-alt" id="compare-section">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">βοΈ Compare</span>
<h2 class="section-title">Compare Roadmaps</h2>
<p class="section-subtitle">
Compare any two roadmaps side by side to find your path
</p>
</div>
<div id="comparison-tool" class="animate-on-scroll"></div>
</div>
</section>
<!-- Project Ideas -->
<section class="section" id="projects-section">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">π¨ Build</span>
<h2 class="section-title">Project Ideas</h2>
<p class="section-subtitle">
Hands-on project ideas to apply what you've learned
</p>
</div>
<div class="roadmap-filters animate-on-scroll" style="justify-content: center;">
<div class="filter-pills" id="projectRoadmapFilter">
<button class="pill active" data-project="frontend">Frontend</button>
<button class="pill" data-project="backend">Backend</button>
<button class="pill" data-project="fullstack">Full Stack</button>
<button class="pill" data-project="ml-ai">ML/AI</button>
<button class="pill" data-project="devops">DevOps</button>
<button class="pill" data-project="mobile">Mobile</button>
<button class="pill" data-project="cybersecurity">Security</button>
</div>
</div>
<div id="project-ideas" class="animate-on-scroll"></div>
</div>
</section>
<!-- Interview Prep -->
<section class="section section-alt" id="interview-section">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">π€ Interview</span>
<h2 class="section-title">Interview Prep</h2>
<p class="section-subtitle">
Practice with curated interview questions for each path
</p>
</div>
<div class="roadmap-filters animate-on-scroll" style="justify-content: center;">
<div class="filter-pills" id="interviewRoadmapFilter">
<button class="pill active" data-interview="frontend">Frontend</button>
<button class="pill" data-interview="backend">Backend</button>
<button class="pill" data-interview="devops">DevOps</button>
<button class="pill" data-interview="ml-ai">ML/AI</button>
<button class="pill" data-interview="cybersecurity">Security</button>
</div>
</div>
<div id="interview-prep" class="animate-on-scroll"></div>
</div>
</section>
<!-- Data Management -->
<section class="section" id="data-section">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">πΎ Data</span>
<h2 class="section-title">Your Data</h2>
<p class="section-subtitle">
Export, import, or manage your learning data
</p>
</div>
<div id="data-management" class="animate-on-scroll"></div>
<div style="text-align: center; margin-top: 20px;" class="animate-on-scroll">
<button class="share-progress-btn" onclick="shareOverallProgress()">πΈ Share My Progress Card</button>
<p style="font-size: 0.8rem; color: var(--text-muted); margin-top: 8px;">
Generate a shareable image of your learning journey
</p>
</div>
</div>
</section>
<!-- Bookmark Panel -->
<div class="bookmark-panel" id="bookmarkPanel">
<div class="bookmark-panel-header">
<h3>π Bookmarks</h3>
<button onclick="exportBookmarks()" class="btn btn-sm">
Export Study Plan π₯
</button>
</div>
<div id="bookmarkList"></div>
</div>
<!-- Learning Paths -->
<section class="section" id="learning-paths">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">π― Learning Paths</span>
<h2 class="section-title">Curated Paths</h2>
<p class="section-subtitle">
Pre-built paths combining nodes from multiple roadmaps
</p>
</div>
<div class="roadmaps-grid" id="learningPathsGrid"></div>
</div>
</section>
<!-- Achievements -->
<section class="section section-alt" id="achievements">
<div class="container">
<div class="section-header animate-on-scroll">
<span class="section-tag">π Achievements</span>
<h2 class="section-title">Your Badges</h2>
<p class="section-subtitle">Unlock achievements as you learn</p>
</div>
<div class="roadmaps-grid" id="achievementsGrid"></div>
</div>
</section>
<!-- CTA -->
<section class="section cta-section">
<div class="container">
<div class="cta-card animate-on-scroll">
<div class="cta-glow" aria-hidden="true"></div>
<h2>π Start Learning Today</h2>
<p>Pick a roadmap and begin your journey. No sign-up required.</p>
<a href="#roadmaps" class="btn btn-primary btn-lg">Get Started β</a>
</div>
</div>
</section>
<!-- Certifications -->
<section id="certifications" class="section">
<div class="container">
<h2 class="section-title">π Certifications</h2>
<p class="section-subtitle">
Track your progress toward industry certifications β roadmap nodes map
to real exam topics
</p>
<div id="certifications"></div>
</div>
</section>
<!-- Community Forum -->
<section id="community-forum-section" class="section">
<div class="container">
<h2 class="section-title">π¬ Community</h2>
<p class="section-subtitle">
Connect with fellow learners, ask questions, share your progress
</p>
<div id="community-forum"></div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<span class="nav-logo"
>πΊοΈ <span class="logo-text">DevRoadmaps</span></span
>
<p>
Free, open-source developer roadmaps.<br />Learn any tech
path with curated, free resources.
</p>
<div class="footer-social">
<a
href="https://github.com/rudra496"
target="_blank"
rel="noopener"
aria-label="GitHub"
>GitHub</a
>
<a
href="https://www.linkedin.com/in/rudrasarker"
target="_blank"
rel="noopener"
aria-label="LinkedIn"
>LinkedIn</a
>
<a
href="https://x.com/Rudra496"
target="_blank"
rel="noopener"
aria-label="X/Twitter"
>X/Twitter</a
>
<a
href="https://www.facebook.com/rudrasarker130"
target="_blank"
rel="noopener"
aria-label="Facebook"
>Facebook</a
>
<a
href="https://youtube.com/@rudrasarker9732"
target="_blank"
rel="noopener"
aria-label="YouTube"
>YouTube</a
>
<a
href="https://dev.to/rudra_sarker"
target="_blank"
rel="noopener"
aria-label="Dev.to"
>Dev.to</a
>
<a
href="https://www.researchgate.net/profile/Rudra-Sarker-3"
target="_blank"
rel="noopener"
aria-label="ResearchGate"
>ResearchGate</a
>
</div>
</div>
<div class="footer-col">
<h4>Roadmaps</h4>
<a href="roadmap.html?roadmap=frontend">Frontend</a>
<a href="roadmap.html?roadmap=backend">Backend</a>
<a href="roadmap.html?roadmap=fullstack">Full Stack</a>
<a href="roadmap.html?roadmap=ml-ai">ML/AI</a>
<a href="roadmap.html?roadmap=devops">DevOps</a>
<a href="roadmap.html?roadmap=mobile">Mobile</a>
</div>
<div class="footer-col">
<h4>More</h4>
<a href="roadmap.html?roadmap=cybersecurity">Cybersecurity</a>
<a href="roadmap.html?roadmap=data-engineer">Data Engineering</a>
<a href="roadmap.html?roadmap=blockchain">Blockchain</a>
<a href="roadmap.html?roadmap=game-dev">Game Dev</a>
<a href="roadmap.html?roadmap=embedded-iot">IoT</a>
<a href="roadmap.html?roadmap=product-manager">Product Manager</a>
<a href="roadmap.html?roadmap=devsecops">DevSecOps</a>
<a href="roadmap.html?roadmap=qa-engineer">QA Engineer</a>
<a href="roadmap.html?roadmap=technical-writer">Technical Writer</a>
<a href="roadmap.html?roadmap=low-code-no-code">Low-Code/No-Code</a>
<a href="roadmap.html?roadmap=cloud-architect">Cloud Architect</a>
<a href="roadmap.html?roadmap=platform-engineer">Platform Engineer</a>
<a href="roadmap.html?roadmap=sre">SRE</a>
<a href="roadmap.html?roadmap=ar-vr">AR/VR Developer</a>
</div>
<div class="footer-col">
<h4>Project</h4>
<a href="https://github.com/rudra496/devroadmaps" target="_blank"
>GitHub</a
>
<a href="#features">Features</a>
<a href="#faq">FAQ</a>
<a href="#testimonials">Testimonials</a>
</div>
</div>
<div class="footer-bottom">
<p>MIT License β’ Made with β€οΈ for developers everywhere</p>
</div>
</div>
</footer>
<!-- Back to Top -->
<button class="back-to-top" id="backToTop" aria-label="Back to top">
β
</button>
<!-- Theme Toggle -->
<script src="js/main.js"></script>
<script src="js/community.js"></script>