-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLangSidebars.ts
More file actions
1000 lines (952 loc) · 29.4 KB
/
LangSidebars.ts
File metadata and controls
1000 lines (952 loc) · 29.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
/**
* Copyright (c) Ajay Dhangar
*
* This file defines the sidebar configuration for the CodeHarborHub Tutorials Docs.
* Each category represents a tutorial topic like HTML, CSS, JavaScript, React, Git, GitHub, and Cybersecurity.
*
* Licensed under the MIT License.
*/
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
tutorial: [
// "index",
{ type: "autogenerated", dirName: "." },
// HTML Tutorial Structure
{
type: "link",
label: "HTML",
href: "/languages-platforms/html/intro-html",
},
// CSS Tutorial Structure
{
type: "link",
label: "CSS",
href: "/languages-platforms/css/introduction",
},
// JavaScript Tutorial Structure
{
type: "link",
label: "JavaScript",
href: "/languages-platforms/javascript/introduction-to-javascript/what-is-js",
},
// Java Tutorial Structure
// {
// type: "link",
// label: "Java",
// href: "/languages-platforms/java",
// },
// "java/index"
],
css: [
"css/introduction",
{
type: "category",
label: "CSS Basics",
link: {
type: "generated-index",
title: "Getting Started with CSS Basics",
description:
"Learn about different ways to apply CSS: inline, internal, and external styles, along with the cascading order concept.",
keywords: ["css", "inline css", "internal css", "external css"],
// image: "/img/github.png",
},
items: [
"css/basics/inline",
"css/basics/internal",
"css/basics/external",
"css/basics/cascading-order",
],
},
{
type: "category",
label: "Syntax Basics",
link: {
type: "generated-index",
title: "CSS Syntax and Rules",
description:
"Understand CSS syntax structure, selectors, declarations, and how comments work in CSS files.",
keywords: ["css syntax", "selectors", "rules", "comments"],
},
items: [
{
type: "category",
label: "Rules",
items: [
"css/syntax-basics/rules/selector",
"css/syntax-basics/rules/properties-and-values",
"css/syntax-basics/rules/declaration",
],
},
"css/syntax-basics/comments",
],
},
{
type: "category",
label: "Selectors",
link: {
type: "generated-index",
title: "CSS Selectors Guide",
description:
"Master different types of selectors from simple to combinators and attribute-based selectors.",
keywords: [
"css selectors",
"simple selectors",
"combinator selectors",
"attribute selectors",
],
},
items: [
{
type: "category",
label: "Simple Selectors",
items: [
"css/selectors/simple/element",
"css/selectors/simple/class",
"css/selectors/simple/id",
"css/selectors/simple/universal",
"css/selectors/simple/grouping",
],
},
{
type: "category",
label: "Combinator Selectors",
items: [
"css/selectors/combinators/descendant",
"css/selectors/combinators/child",
"css/selectors/combinators/adjacent-sibling",
"css/selectors/combinators/general-sibling",
],
},
"css/selectors/attribute-selectors",
"css/selectors/pseudo-classes",
"css/selectors/pseudo-elements",
],
},
{
type: "category",
label: "Typography",
link: {
type: "generated-index",
title: "Typography in CSS",
description:
"Learn how to style and structure text in CSS covering fonts, text styles, spacing, alignment, shadows, and more.",
keywords: [
"css typography",
"css fonts",
"text style",
"font family",
"text shadow",
],
},
items: [
{
type: "category",
label: "Fonts",
link: {
type: "generated-index",
title: "CSS Fonts",
description:
"Understand CSS font properties including font-family, font-size, style, shorthand, and Google Fonts integration.",
keywords: [
"css fonts",
"font family",
"font size",
"font shorthand",
"google fonts",
],
},
items: [
"css/typography/fonts/font-family",
"css/typography/fonts/font-style",
"css/typography/fonts/font-size",
"css/typography/fonts/font-shorthand",
"css/typography/fonts/google-fonts",
"css/typography/fonts/font-variant",
],
},
{
type: "category",
label: "Text Style",
link: {
type: "generated-index",
title: "CSS Text Styles",
description:
"Master text styling with CSS control alignment, decoration, transformation, spacing, and shadows.",
keywords: [
"css text",
"text decoration",
"text transform",
"line height",
"text shadow",
],
},
items: [
"css/typography/text-style/color",
"css/typography/text-style/direction",
"css/typography/text-style/text-alignment",
"css/typography/text-style/text-decoration",
"css/typography/text-style/text-transform",
"css/typography/text-style/text-spacing",
"css/typography/text-style/line-height",
"css/typography/text-style/text-shadow",
"css/typography/text-style/word-wrap",
],
},
],
},
{
type: "category",
label: "Colors",
link: {
type: "generated-index",
title: "Backgrounds and Colors in CSS",
description:
"Explore CSS color systems gradients, images, RGBA, HSLA, and more.",
keywords: ["css", "css colors", "gradients", "rgba", "hsl"],
},
items: [
"css/colors/color-names",
"css/colors/rgb",
"css/colors/rgba",
"css/colors/hsl",
"css/colors/hsla",
"css/colors/gradients",
],
},
{
type: "category",
label: "Backgrounds",
link: {
type: "generated-index",
title: "CSS Backgrounds",
description:
"Master CSS backgrounds learn background color, images, gradients, positioning, size, repeat, and shorthand properties to create stunning visual designs.",
keywords: [
"css background",
"background color",
"background image",
"css gradients",
"background size",
"background shorthand",
],
},
items: [
"css/background/background-color",
"css/background/background-image",
"css/background/background-gradient",
"css/background/background-position",
"css/background/background-size",
"css/background/background-repeat",
"css/background/background-attachment",
"css/background/background-shorthand",
],
},
{
type: "category",
label: "Box Model",
link: {
type: "generated-index",
title: "CSS Box Model",
description:
"Understand the CSS Box Model, learn how elements are structured with margins, borders, padding, and content areas. Explore dimensions, outlines, shadows, and box-sizing for precise layouts.",
keywords: [
"css box model",
"margin",
"padding",
"border",
"box sizing",
"width and height",
"box shadow",
"css layout",
],
},
items: [
"css/box-model/introduction",
"css/box-model/margin",
"css/box-model/padding",
"css/box-model/border",
"css/box-model/outline",
"css/box-model/width",
"css/box-model/height",
"css/box-model/box-sizing",
"css/box-model/box-shadow",
{
type: "category",
label: "CSS Units",
link: {
type: "generated-index",
title: "CSS Units",
description:
"Learn CSS units to control element sizes understand absolute vs. relative units, viewport-based sizing, and how to use them with CSS functions for responsive designs.",
keywords: [
"css units",
"absolute units",
"relative units",
"viewport units",
"em vs rem",
"responsive design",
],
},
items: [
"css/box-model/css-units/absolute-vs-relative",
"css/box-model/css-units/viewport-units",
"css/box-model/css-units/units-with-functions",
],
},
],
},
{
type: "category",
label: "Layout",
link: {
type: "generated-index",
title: "CSS Layout",
description:
"Learn how CSS controls page structure and element positioning. Explore display modes, positioning techniques, overflow handling, and modern layouts like Flexbox, Grid, and Container Queries.",
keywords: [
"css layout",
"css display",
"css position",
"flexbox",
"grid",
"container queries",
"css overflow",
"css z-index",
],
},
items: [
{
type: "category",
label: "Display",
link: {
type: "generated-index",
title: "CSS Display Property",
description:
"Understand CSS display modes — block, inline, inline-block, none, and visibility to control how elements appear and interact in the layout.",
keywords: [
"css display",
"block vs inline",
"inline-block",
"display none",
"visibility hidden",
],
},
items: [
"css/layout/display/block",
"css/layout/display/inline",
"css/layout/display/inline-block",
"css/layout/display/none",
"css/layout/display/visibility",
],
},
{
type: "category",
label: "Position",
link: {
type: "generated-index",
title: "CSS Position Property",
description:
"Master the CSS position property and learn how to control element placement using static, relative, absolute, fixed, and sticky positioning with z-index layering.",
keywords: [
"css position",
"relative",
"absolute",
"fixed",
"sticky",
"z-index",
"css positioning",
],
},
items: [
"css/layout/position/static",
"css/layout/position/relative",
"css/layout/position/absolute",
"css/layout/position/fixed",
"css/layout/position/sticky",
"css/layout/position/z-index",
],
},
"css/layout/float-and-clear",
"css/layout/overflow",
"css/layout/display-flow",
{
type: "category",
label: "Modern Layouts",
link: {
type: "generated-index",
title: "Modern CSS Layouts",
description:
"Explore the most powerful layout systems in CSS including Flexbox, Grid, Subgrid, Multi-Column Layouts, Container Queries, Nesting, and Logical Properties.",
keywords: [
"css flexbox",
"css grid",
"css subgrid",
"multi column layout",
"container queries",
"css nesting",
"logical properties",
],
},
items: [
"css/layout/modern-layouts/flexbox",
"css/layout/modern-layouts/grid",
"css/layout/modern-layouts/subgrid",
"css/layout/modern-layouts/multi-column-layout",
"css/layout/modern-layouts/container-queries",
"css/layout/modern-layouts/nesting",
"css/layout/modern-layouts/logical-properties",
],
},
],
},
{
type: "category",
label: "Effects",
link: {
type: "generated-index",
title: "CSS Effects",
description:
"Dive into CSS visual effects to make your designs pop. Learn how to use opacity, filters, blend modes, clipping, masking, and backdrop filters to create dynamic, polished visuals.",
keywords: [
"css effects",
"css opacity",
"css filters",
"css blend modes",
"clip-path",
"css mask",
"backdrop-filter",
"visual effects",
],
},
items: [
"css/effects/opacity",
"css/effects/filters-and-blend",
"css/effects/clip-path",
"css/effects/mask",
"css/effects/backdrops",
],
},
{
type: "category",
label: "Transitions & Animations",
link: {
type: "generated-index",
title: "CSS Transitions & Animations",
description:
"Learn how to create smooth transitions, transformations, and keyframe animations in CSS. Master timing functions, easing, and animation best practices to add motion and interactivity to your web designs.",
keywords: [
"css transitions",
"css animations",
"css transforms",
"keyframes",
"animation timing",
"motion design",
"web animation",
],
},
items: [
"css/transitions-and-animations/transforms",
"css/transitions-and-animations/transitions",
"css/transitions-and-animations/keyframes",
"css/transitions-and-animations/animation-timing",
],
},
{
type: "category",
label: "Responsiveness",
link: {
type: "generated-index",
title: "CSS Responsiveness",
description:
"Master responsive design in CSS using media queries, container queries, responsive typography, and fluid layouts. Learn to create websites that adapt perfectly to any screen size or device.",
keywords: [
"css responsiveness",
"responsive design",
"media queries",
"container queries",
"responsive typography",
"fluid layouts",
"adaptive web design",
],
},
items: [
"css/responsiveness/media-queries",
"css/responsiveness/container-queries",
"css/responsiveness/responsive-images",
"css/responsiveness/responsive-typography",
"css/responsiveness/fluid-layouts",
],
},
{
type: "category",
label: "Advanced Features",
link: {
type: "generated-index",
title: "Advanced CSS Features",
description:
"Explore the most powerful and modern CSS capabilities. Learn about CSS variables, functions, cascade layers, specificity, inheritance, and Shadow DOM to write scalable, modular, and maintainable styles.",
keywords: [
"advanced css",
"css variables",
"css functions",
"css layers",
"cascade layers",
"css specificity",
"css inheritance",
"shadow dom",
"modern css",
],
},
items: [
"css/advanced-features/css-variables",
"css/advanced-features/css-functions",
"css/advanced-features/css-layers",
"css/advanced-features/cascade-layers",
"css/advanced-features/specificity",
"css/advanced-features/inheritance",
"css/advanced-features/shadow-dom",
],
},
{
type: "category",
label: "Utilities",
link: {
type: "generated-index",
title: "CSS Utilities",
description:
"Learn essential CSS utilities for handling common elements like tables, lists, images, and icons. Master how to style, align, and optimize these components for better readability and accessibility across devices.",
keywords: [
"css utilities",
"css tables",
"css lists",
"css images",
"css icons",
"frontend styling",
"web design",
],
},
items: [
"css/utilities/tables",
"css/utilities/lists",
"css/utilities/images",
"css/utilities/icons",
],
},
{
type: "category",
label: "Best Practices",
link: {
type: "generated-index",
title: "CSS Best Practices",
description:
"Discover the essential CSS best practices for building high-performance, accessible, and maintainable websites. Learn how to structure your styles, improve scalability, and follow naming conventions like BEM, OOCSS, and SMACSS.",
keywords: [
"css best practices",
"css performance",
"css accessibility",
"css maintainability",
"css scalability",
"css naming conventions",
"bem",
"oocss",
"smacss",
],
},
items: [
"css/best-practices/performance",
"css/best-practices/accessibility",
"css/best-practices/maintainability",
"css/best-practices/scalability",
"css/best-practices/naming-conventions",
],
},
{
type: "category",
label: "CSS Frameworks",
link: {
type: "generated-index",
title: "CSS Frameworks",
description:
"Learn popular CSS frameworks that simplify and accelerate modern web development. Explore Tailwind CSS, Bootstrap, Bulma, Foundation, and Materialize — understand their philosophy, utility systems, and how to integrate them into your workflow.",
keywords: [
"css frameworks",
"tailwind css",
"bootstrap",
"bulma",
"foundation",
"materialize",
"frontend tools",
"web design",
"responsive frameworks",
"ui development",
],
},
items: [
"css/css-frameworks/tailwind-css",
"css/css-frameworks/bootstrap",
"css/css-frameworks/bulma",
"css/css-frameworks/foundation",
"css/css-frameworks/materialize",
],
},
{
type: "category",
label: "Modern CSS Tools",
link: {
type: "generated-index",
title: "Modern CSS Tools",
description:
"Explore modern CSS tools that enhance productivity, scalability, and maintainability in front-end development. Learn about preprocessors (SASS, LESS, Stylus), PostCSS, CSS-in-JS, and Browser DevTools — the backbone of modern web styling automation.",
keywords: [
"modern css tools",
"sass",
"less",
"stylus",
"postcss",
"css-in-js",
"browser devtools",
"frontend optimization",
"css workflow",
],
},
items: [
{
type: "category",
label: "Preprocessors",
link: {
type: "generated-index",
title: "CSS Preprocessors",
description:
"Learn CSS preprocessors that simplify writing scalable, modular, and maintainable styles. Understand the advantages and use cases of SASS, LESS, and Stylus in modern front-end development.",
keywords: [
"sass",
"less",
"stylus",
"css preprocessors",
"modular css",
],
},
items: [
"css/modern-css-tools/preprocessors/sass",
"css/modern-css-tools/preprocessors/less",
"css/modern-css-tools/preprocessors/stylus",
],
},
"css/modern-css-tools/postcss",
"css/modern-css-tools/css-in-js",
"css/modern-css-tools/browser-devtools",
],
},
{
type: "category",
label: "Project Practicals",
link: {
type: "generated-index",
title: "CSS Project Practicals",
description:
"Apply your CSS knowledge through practical projects. Build layouts, animations, and responsive designs while optimizing performance — turning theory into real-world skills.",
keywords: [
"css projects",
"practical css",
"layout practice",
"animation projects",
"responsive design",
"performance optimization",
"hands-on css",
"web development practice",
],
},
items: [
"css/project-practicals/mini-projects",
"css/project-practicals/layout-practice",
"css/project-practicals/animation-practice",
"css/project-practicals/responsive-design-practice",
"css/project-practicals/performance-optimization",
],
},
],
javascript: [
{
type: "category",
label: "Introduction to JavaScript",
link: {
type: "doc",
id: "javascript/introduction-to-javascript/what-is-js",
},
items: [
"javascript/introduction-to-javascript/what-is-js",
"javascript/introduction-to-javascript/history-of-javascript",
"javascript/introduction-to-javascript/javascript-versions",
"javascript/introduction-to-javascript/how-to-run-javascript",
],
},
{
type: "category",
label: "All About Variables",
link: {
type: "doc",
id: "javascript/all-about-variables/variable-declarations",
},
items: [
"javascript/all-about-variables/variable-declarations",
"javascript/all-about-variables/variable-naming-rules",
"javascript/all-about-variables/variable-scopes",
"javascript/all-about-variables/hoisting",
],
},
{
type: "category",
label: "Data Types",
link: {
type: "doc",
id: "javascript/data-types/intro",
},
items: [
"javascript/data-types/intro",
{
type: "category",
label: "Primitive Types",
link: {
type: "doc",
id: "javascript/data-types/primitive-types/intro",
},
items: [
"javascript/data-types/primitive-types/number",
"javascript/data-types/primitive-types/string",
"javascript/data-types/primitive-types/boolean",
"javascript/data-types/primitive-types/null",
"javascript/data-types/primitive-types/undefined",
"javascript/data-types/primitive-types/symbol",
"javascript/data-types/primitive-types/bigint",
],
},
{
type: "category",
label: "Non-Primitive Types",
link: {
type: "doc",
id: "javascript/data-types/non-primitive-types/object/intro",
},
items: [
"javascript/data-types/non-primitive-types/object/intro",
"javascript/data-types/non-primitive-types/object/creating-objects",
],
},
],
},
],
html: [
"html/intro-html",
"html/setup-environment",
"html/how-html-works",
{
type: "category",
label: "HTML Basics",
link: {
type: "generated-index",
title: "HTML Basics",
description:
"Learn the foundational concepts of HTML syntax, structure, and elements.",
},
items: [
"html/html-basics/syntax-and-structure",
"html/html-basics/elements-and-tags",
"html/html-basics/attributes-and-values",
"html/html-basics/document-structure",
],
},
{
type: "category",
label: "Text Formatting",
link: {
type: "generated-index",
title: "HTML Text Formatting",
description:
"Style and format text using HTML tags like headings, paragraphs, and spans.",
},
items: [
"html/text-formatting/headings",
"html/text-formatting/paragraphs",
"html/text-formatting/text-formatting",
],
},
{
type: "category",
label: "Images",
link: {
type: "generated-index",
title: "HTML Images",
description:
"Learn how to insert, format, and optimize images in your web pages.",
},
items: [
"html/images/inserting-images",
"html/images/image-attributes",
"html/images/image-formats-and-optimization",
],
},
{
type: "category",
label: "Links & Anchors",
link: {
type: "generated-index",
title: "HTML Links and Anchors",
description:
"Explore how hyperlinks work in HTML and how to connect pages effectively.",
},
items: [
"html/links-and-anchors/creating-hyperlinks",
"html/links-and-anchors/link-attributes",
],
},
{
type: "category",
label: "Lists",
link: {
type: "generated-index",
title: "HTML Lists",
description:
"Learn how to create ordered, unordered, and definition lists in HTML.",
},
items: [
"html/lists/list-intro",
"html/lists/ordered-lists",
"html/lists/unordered-lists",
"html/lists/definition-lists",
],
},
{
type: "category",
label: "Tables",
link: {
type: "generated-index",
title: "HTML Tables",
description:
"Discover how to organize and structure data using HTML tables.",
},
items: [
"html/tables/html-tables",
"html/tables/creating-tables",
"html/tables/table-structure",
"html/tables/table-attributes",
],
},
{
type: "category",
label: "Forms",
link: {
type: "generated-index",
title: "HTML Forms",
description:
"Understand how to create and manage forms in HTML for collecting user input.",
},
items: [
"html/forms/form-input-element",
"html/forms/form-attribute",
"html/forms/building-form",
],
},
{
type: "category",
label: "Semantic HTML",
link: {
type: "generated-index",
title: "Semantic HTML",
description:
"Learn how semantic elements improve accessibility and SEO.",
},
items: [
"html/semantic-html/understanding-semantic-html",
"html/semantic-html/semantic-html5-elements",
"html/semantic-html/benefits-of-semantic-html",
],
},
{
type: "category",
label: "Multimedia",
link: {
type: "generated-index",
title: "HTML Multimedia",
description:
"Add and control multimedia content like audio and video in your web pages.",
},
items: [
"html/multimedia/adding-audio-and-video",
"html/multimedia/embedding-multimedia-content",
"html/multimedia/multimedia-attributes-and-controls",
],
},
{
type: "category",
label: "HTML5 APIs",
link: {
type: "generated-index",
title: "HTML5 APIs",
description:
"Explore advanced HTML5 APIs like Canvas, Geolocation, and Storage.",
},
items: [
"html/html5-apis/canvas-and-svg-graphics",
"html/html5-apis/geolocation-api",
"html/html5-apis/local-storage-and-session-storage",
],
},
{
type: "category",
label: "Responsive Web Design",
link: {
type: "generated-index",
title: "Responsive Web Design",
description:
"Learn how to make your websites adaptable across devices.",
},
items: [
"html/responsive-web-design/introduction-to-responsive-design",
"html/responsive-web-design/media-queries-and-breakpoints",
"html/responsive-web-design/flexbox-and-grid-layout",
],
},
{
type: "category",
label: "HTML Validation & Debugging",
link: {
type: "generated-index",
title: "HTML Validation and Debugging",
description:
"Understand how to validate and debug HTML code effectively.",
},
items: [
"html/html-validation-and-debugging/importance-of-validating-html-code",
"html/html-validation-and-debugging/using-w3c-validator",
"html/html-validation-and-debugging/common-html-errors-and-fixes",
],
},
// {
// type: "category",
// label: "Best Practices & Optimization",
// link: {
// type: "generated-index",
// title: "HTML Best Practices",
// description:
// "Follow best practices for writing clean, efficient, and accessible HTML.",
// },
// items: ["html/best-practices-and-optimization"],
// },
{
type: "category",
label: "Next Steps & Resources",
link: {
type: "generated-index",
title: "Next Steps and Resources",
description:
"Continue your learning journey with advanced topics and community resources.",
},
items: [
"html/next-steps-and-resources/advanced-html-topics",
"html/next-steps-and-resources/further-learning-resources",
"html/next-steps-and-resources/community-support",
],
},
],
};
export default sidebars;