From 063d8a1c07ab1c0fa5d8cede34ed9ae08763640c Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 9 Oct 2025 20:34:56 +0530 Subject: [PATCH] New update --- docs/html/forms/building-form.mdx | 1 - docs/html/forms/form-attribute.mdx | 1 - docs/html/forms/form-input-element.mdx | 1 - docs/html/how-html-works.mdx | 1 - .../html-basics/attributes-and-values.mdx | 1 - docs/html/html-basics/document-structure.mdx | 1 - docs/html/html-basics/elements-and-tags.mdx | 1 - .../html/html-basics/syntax-and-structure.mdx | 1 - .../common-html-errors-and-fixes.mdx | 1 - .../importance-of-validating-html-code.mdx | 1 - .../using-w3c-validator.mdx | 1 - .../html5-apis/canvas-and-svg-graphics.mdx | 1 - docs/html/html5-apis/geolocation-api.mdx | 1 - .../local-storage-and-session-storage.mdx | 1 - docs/html/images/image-attributes.mdx | 1 - .../images/image-formats-and-optimization.mdx | 1 - docs/html/images/inserting-images.mdx | 1 - docs/html/intro-html.mdx | 1 - .../links-and-anchors/creating-hyperlinks.mdx | 1 - .../links-and-anchors/link-attributes.mdx | 1 - docs/html/lists/definition-lists.mdx | 1 - docs/html/lists/list-intro.mdx | 1 - docs/html/lists/ordered-lists.mdx | 1 - docs/html/lists/unordered-lists.mdx | 1 - .../multimedia/adding-audio-and-video.mdx | 1 - .../embedding-multimedia-content.mdx | 1 - .../multimedia-attributes-and-controls.mdx | 1 - .../advanced-html-topics.mdx | 1 - .../community-support.mdx | 1 - .../further-learning-resources.mdx | 1 - .../flexbox-and-grid-layout.mdx | 1 - .../introduction-to-responsive-design.mdx | 1 - .../media-queries-and-breakpoints.mdx | 1 - .../benefits-of-semantic-html.mdx | 1 - .../semantic-html/semantic-html5-elements.mdx | 1 - .../understanding-semantic-html.mdx | 1 - docs/html/setup-environment.mdx | 1 - docs/html/tables/creating-tables.mdx | 1 - docs/html/tables/html-tables.mdx | 1 - docs/html/tables/table-attributes.mdx | 1 - docs/html/tables/table-structure.mdx | 1 - docs/html/text-formatting/headings.mdx | 1 - docs/html/text-formatting/paragraphs.mdx | 1 - docs/html/text-formatting/text-formatting.mdx | 1 - src/components/Svg/index.tsx | 43 ------ src/components/Svg/styles.module.css | 54 -------- .../svgIcons/FavoriteIcon/index.tsx | 19 --- src/css/custom.css | 8 +- src/css/markdown.module.css | 38 ------ src/theme/DocItem/DocContent.js | 110 --------------- src/theme/DocItem/DocsInfo.js | 89 ------------ src/theme/DocItem/DocsRating.js | 82 ----------- src/theme/DocItem/Layout.js | 59 -------- src/theme/DocItem/ShareButton.js | 75 ---------- src/theme/DocItem/index.js | 24 ---- src/theme/DocItem/shareButton.module.css | 67 --------- src/theme/DocItem/styles.module.css | 129 ------------------ 57 files changed, 2 insertions(+), 839 deletions(-) delete mode 100644 src/components/Svg/index.tsx delete mode 100644 src/components/Svg/styles.module.css delete mode 100644 src/components/svgIcons/FavoriteIcon/index.tsx delete mode 100644 src/css/markdown.module.css delete mode 100644 src/theme/DocItem/DocContent.js delete mode 100644 src/theme/DocItem/DocsInfo.js delete mode 100644 src/theme/DocItem/DocsRating.js delete mode 100644 src/theme/DocItem/Layout.js delete mode 100644 src/theme/DocItem/ShareButton.js delete mode 100644 src/theme/DocItem/index.js delete mode 100644 src/theme/DocItem/shareButton.module.css delete mode 100644 src/theme/DocItem/styles.module.css diff --git a/docs/html/forms/building-form.mdx b/docs/html/forms/building-form.mdx index 3b2a72f..e3123ab 100644 --- a/docs/html/forms/building-form.mdx +++ b/docs/html/forms/building-form.mdx @@ -5,7 +5,6 @@ sidebar_label: Building Forms sidebar_position: 1 tags: [html, web-development, forms, user-input, front-end-development, web-design] description: "Learn how to create forms in HTML to collect user input effectively, with detailed examples and best practices." -hide_table_of_contents: true --- Forms are an essential part of any website or web application. They allow users to interact with the website by providing input, such as text, selections, and buttons. Forms are used for various purposes, such as user registration, login, search, feedback, and more. diff --git a/docs/html/forms/form-attribute.mdx b/docs/html/forms/form-attribute.mdx index 104e5a8..76eeff5 100644 --- a/docs/html/forms/form-attribute.mdx +++ b/docs/html/forms/form-attribute.mdx @@ -6,7 +6,6 @@ sidebar_position: 3 description: "Learn about the form attribute in HTML forms and how it can be used to associate form elements with a form." keywords: [form attribute, form element, form association, form control, HTML form, web development, front-end development, web design] tags: [html, web-development, forms, user-input, front-end-development, web-design] -hide_table_of_contents: true --- The `form` attribute in HTML is used to associate form elements with a form. It specifies the `id` of the form element that the input element belongs to. This association allows you to group related form controls together and define the form structure more clearly. diff --git a/docs/html/forms/form-input-element.mdx b/docs/html/forms/form-input-element.mdx index 16ba8e2..a5ab521 100644 --- a/docs/html/forms/form-input-element.mdx +++ b/docs/html/forms/form-input-element.mdx @@ -6,7 +6,6 @@ sidebar_position: 2 tags: [html input element, html form input element, html input types, html input text, html input password, html input email] description: "Learn about the HTML element and its various types such as text, password, email, etc., used to create input fields within a form." keywords: [html input element, html form input element, html input types, html input text, html input password, html input email] -hide_table_of_contents: true --- The `` element is used to create input fields within a form. It can be used to create text fields, checkboxes, radio buttons, buttons, and more. The `type` attribute of the `` element specifies the type of input field to be created. diff --git a/docs/html/how-html-works.mdx b/docs/html/how-html-works.mdx index 6e37895..243a948 100644 --- a/docs/html/how-html-works.mdx +++ b/docs/html/how-html-works.mdx @@ -5,7 +5,6 @@ sidebar_label: How HTML works sidebar_position: 2 tags: [html, web-development, front-end-development, web-design, web-browsers, web-technology, web-pages] description: "In this tutorial, you will learn about How HTML works with web browsers and how web browsers render HTML content." -hide_table_of_contents: true --- > *We have already learned HTML in the previous tutorial. In this tutorial, we will learn about how HTML works with web browsers and how web browsers render HTML content.* diff --git a/docs/html/html-basics/attributes-and-values.mdx b/docs/html/html-basics/attributes-and-values.mdx index 97444af..05d7282 100644 --- a/docs/html/html-basics/attributes-and-values.mdx +++ b/docs/html/html-basics/attributes-and-values.mdx @@ -6,7 +6,6 @@ sidebar_position: 3 tags: [html, web-development, attributes, values] description: "In this tutorial, you will learn about HTML attributes and values. HTML attributes provide additional information about elements, and values define the specific settings or properties of the attributes." keywords: [html, web development, attributes, values, html attributes, html values, html tutorial, html basics, web design, web pages, websites, html structure, html attributes tutorial, html values tutorial, html in 2024] -hide_table_of_contents: true --- HTML Attributes and Values are used to provide additional information about HTML elements and define specific settings or properties for those elements. In this tutorial, you will learn about HTML attributes and values and how they are used in web development. diff --git a/docs/html/html-basics/document-structure.mdx b/docs/html/html-basics/document-structure.mdx index 0652dee..04ef328 100644 --- a/docs/html/html-basics/document-structure.mdx +++ b/docs/html/html-basics/document-structure.mdx @@ -5,7 +5,6 @@ sidebar_label: Document Structure sidebar_position: 4 tags: [html, web-development, document-structure] description: "In this tutorial, you will learn about the structure of an HTML document and how to create a basic HTML document." -hide_table_of_contents: true --- An HTML document consists of several parts that define the structure and content of the web page. Understanding the structure of an HTML document is essential for creating well-formed and valid web pages. In this tutorial, you will learn about the structure of an HTML document and how to create a basic HTML document. diff --git a/docs/html/html-basics/elements-and-tags.mdx b/docs/html/html-basics/elements-and-tags.mdx index af47c8d..32bef39 100644 --- a/docs/html/html-basics/elements-and-tags.mdx +++ b/docs/html/html-basics/elements-and-tags.mdx @@ -6,7 +6,6 @@ sidebar_position: 2 tags: [html, web-development, elements, tags] description: "In this tutorial, you will learn about HTML elements and tags. HTML elements are the building blocks of HTML pages, and tags are used to define the structure of the content." keywords: [html, web development, elements, tags, html elements, html tags, html tutorial, html basics, web design, web pages, websites, html structure, html elements tutorial, html tags tutorial, html in 2024] -hide_table_of_contents: true --- HTML elements and tags are the building blocks of HTML pages. Elements define the structure and content of the web page, while tags are used to mark up the elements. In this tutorial, you will learn about HTML elements and tags and how they are used to create web pages. diff --git a/docs/html/html-basics/syntax-and-structure.mdx b/docs/html/html-basics/syntax-and-structure.mdx index dd08fe2..9235779 100644 --- a/docs/html/html-basics/syntax-and-structure.mdx +++ b/docs/html/html-basics/syntax-and-structure.mdx @@ -41,7 +41,6 @@ keywords: html in 2024, ] description: "In this tutorial, you will learn about the syntax and structure of HTML." -hide_table_of_contents: true --- HTML (Hypertext Markup Language) is the standard markup language for creating web pages. It provides the structure and layout of the content on the web. In this tutorial, you will learn about the syntax and structure of HTML. diff --git a/docs/html/html-validation-and-debugging/common-html-errors-and-fixes.mdx b/docs/html/html-validation-and-debugging/common-html-errors-and-fixes.mdx index b2a6728..55b94ee 100644 --- a/docs/html/html-validation-and-debugging/common-html-errors-and-fixes.mdx +++ b/docs/html/html-validation-and-debugging/common-html-errors-and-fixes.mdx @@ -15,7 +15,6 @@ keywords: html errors, html fixes, ] -hide_table_of_contents: true --- In this tutorial, you will learn about common HTML errors and how to fix them to create valid and well-structured HTML documents. diff --git a/docs/html/html-validation-and-debugging/importance-of-validating-html-code.mdx b/docs/html/html-validation-and-debugging/importance-of-validating-html-code.mdx index b7f18d1..f42c6d7 100644 --- a/docs/html/html-validation-and-debugging/importance-of-validating-html-code.mdx +++ b/docs/html/html-validation-and-debugging/importance-of-validating-html-code.mdx @@ -6,7 +6,6 @@ sidebar_position: 1 tags: [html, web-development, validation, debugging] description: "In this tutorial, you will learn about the importance of validating HTML code and how to use HTML validators to check for errors and ensure your code is well-formed and standards-compliant." keywords: [html validation, html validation importance, html validation benefits, html validation tools, html validation online, html validation w3c, html validation checker, html validation error, html validation code, html validation best practices, html validation and debugging] -hide_table_of_contents: true --- In this tutorial, you will learn about the importance of validating HTML code and how to use HTML validators to check for errors and ensure your code is well-formed and standards-compliant. diff --git a/docs/html/html-validation-and-debugging/using-w3c-validator.mdx b/docs/html/html-validation-and-debugging/using-w3c-validator.mdx index ba053b4..10d8dd3 100644 --- a/docs/html/html-validation-and-debugging/using-w3c-validator.mdx +++ b/docs/html/html-validation-and-debugging/using-w3c-validator.mdx @@ -6,7 +6,6 @@ sidebar_position: 2 tags: [html, web-development, validation, debugging] description: "In this tutorial, you will learn how to use the W3C HTML Validator to check your HTML code for errors and ensure it is well-formed and standards-compliant." keywords: [w3c html validator, html validation, html debugging, html errors, html standards, html compliance] -hide_table_of_contents: true --- In this tutorial, you will learn how to use the W3C HTML Validator to check your HTML code for errors and ensure it is well-formed and standards-compliant. diff --git a/docs/html/html5-apis/canvas-and-svg-graphics.mdx b/docs/html/html5-apis/canvas-and-svg-graphics.mdx index 3bcaa08..897f66e 100644 --- a/docs/html/html5-apis/canvas-and-svg-graphics.mdx +++ b/docs/html/html5-apis/canvas-and-svg-graphics.mdx @@ -15,7 +15,6 @@ keywords: html5 svg, graphics in html, ] -hide_table_of_contents: true --- import SVGExample from './_scripts/SVGExample'; diff --git a/docs/html/html5-apis/geolocation-api.mdx b/docs/html/html5-apis/geolocation-api.mdx index 7bd8500..2807d81 100644 --- a/docs/html/html5-apis/geolocation-api.mdx +++ b/docs/html/html5-apis/geolocation-api.mdx @@ -13,7 +13,6 @@ keywords: geolocation api in html, html5 geolocation api, ] -hide_table_of_contents: true --- import GeolocationExample from './\_scripts/GeolocationExample'; diff --git a/docs/html/html5-apis/local-storage-and-session-storage.mdx b/docs/html/html5-apis/local-storage-and-session-storage.mdx index 634ad92..3ff102e 100644 --- a/docs/html/html5-apis/local-storage-and-session-storage.mdx +++ b/docs/html/html5-apis/local-storage-and-session-storage.mdx @@ -14,7 +14,6 @@ keywords: html5 local storage, html5 session storage, ] -hide_table_of_contents: true --- import SessionStorageExample from './_scripts/SessionStorageExample'; diff --git a/docs/html/images/image-attributes.mdx b/docs/html/images/image-attributes.mdx index 66ab1b5..01724a9 100644 --- a/docs/html/images/image-attributes.mdx +++ b/docs/html/images/image-attributes.mdx @@ -16,7 +16,6 @@ keywords: web development, HTML tutorial, ] -hide_table_of_contents: true --- Images are an essential part of web development and are used to enhance the visual appeal of web pages. In HTML, images are inserted using the `` (image) tag, which specifies the location of the image file and other attributes that control its appearance and behavior. diff --git a/docs/html/images/image-formats-and-optimization.mdx b/docs/html/images/image-formats-and-optimization.mdx index 822dcc8..bd02b85 100644 --- a/docs/html/images/image-formats-and-optimization.mdx +++ b/docs/html/images/image-formats-and-optimization.mdx @@ -22,7 +22,6 @@ keywords: image performance, image size, ] -hide_table_of_contents: true --- Image optimization is an essential aspect of web development that involves reducing the file size of images without compromising their quality. Optimizing images can help improve website performance, reduce loading times, and enhance the user experience. diff --git a/docs/html/images/inserting-images.mdx b/docs/html/images/inserting-images.mdx index 5b587fa..6e1d913 100644 --- a/docs/html/images/inserting-images.mdx +++ b/docs/html/images/inserting-images.mdx @@ -6,7 +6,6 @@ sidebar_position: 1 tags: [html, web-development, images, inserting-images] description: "In this tutorial, you will learn how to insert images in HTML. Images are used to enhance the visual appeal of web pages and provide additional information to users." keywords: [HTML images, image insertion, img tag, alt attribute, web development, HTML tutorial] -hide_table_of_contents: true --- Images are an essential part of web development and are used to enhance the visual appeal of web pages. In HTML, images are inserted using the `` (image) tag, which specifies the location of the image file and other attributes that control its appearance and behavior. diff --git a/docs/html/intro-html.mdx b/docs/html/intro-html.mdx index 3090a0f..5e8f7c0 100644 --- a/docs/html/intro-html.mdx +++ b/docs/html/intro-html.mdx @@ -16,7 +16,6 @@ tags: html attributes, ] description: "In this tutorial, you will learn about HTML, its importance, what is HTML, why learn HTML, how to use HTML, steps to start using HTML, and more." -hide_table_of_contents: true --- HTML stands for **Hyper Text Markup Language**. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements that you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on. diff --git a/docs/html/links-and-anchors/creating-hyperlinks.mdx b/docs/html/links-and-anchors/creating-hyperlinks.mdx index b4eb925..fff262b 100644 --- a/docs/html/links-and-anchors/creating-hyperlinks.mdx +++ b/docs/html/links-and-anchors/creating-hyperlinks.mdx @@ -6,7 +6,6 @@ sidebar_position: 1 tags: [html, web-development, hyperlinks, links] description: "In this tutorial, you will learn how to create hyperlinks in HTML. Hyperlinks are used to link one web page to another, or to link to a specific section within the same web page." keywords: [HTML hyperlinks, HTML links, anchor tag, href attribute, web development, HTML tutorial] -hide_table_of_contents: true --- Hyperlinks, also known as links, are an essential part of web development. They allow users to navigate between different web pages or sections within the same page. In HTML, hyperlinks are created using the `` (anchor) tag, which defines a clickable link to another location. diff --git a/docs/html/links-and-anchors/link-attributes.mdx b/docs/html/links-and-anchors/link-attributes.mdx index f0fead5..1699bd7 100644 --- a/docs/html/links-and-anchors/link-attributes.mdx +++ b/docs/html/links-and-anchors/link-attributes.mdx @@ -16,7 +16,6 @@ keywords: web development, HTML tutorial, ] -hide_table_of_contents: true --- Hyperlinks, also known as links, are an essential part of web development. They allow users to navigate between different web pages or sections within the same page. In HTML, hyperlinks are created using the `` (anchor) tag, which defines a clickable link to another location. diff --git a/docs/html/lists/definition-lists.mdx b/docs/html/lists/definition-lists.mdx index f0ab72d..640e52e 100644 --- a/docs/html/lists/definition-lists.mdx +++ b/docs/html/lists/definition-lists.mdx @@ -6,7 +6,6 @@ sidebar_position: 4 tags: [html, web-development, definition-lists, lists] description: "In this tutorial, you will learn the basics of definition lists in HTML. We will cover what they are, common use cases, examples and you'll also get to see what they look like in real code." keywords: [html definition lists, html lists, definition lists in html, html dl, html dt, html dd, html definition list example, html definition list tutorial, html lists tutorial, html in 2024] -hide_table_of_contents: true --- Definition lists in HTML are used to represent a list of terms and their corresponding definitions. Each term in the list is displayed with a definition following it. Definition lists are commonly used for glossaries, dictionaries, metadata, and other scenarios where a term-definition relationship is required. diff --git a/docs/html/lists/list-intro.mdx b/docs/html/lists/list-intro.mdx index 0c89895..7ec106a 100644 --- a/docs/html/lists/list-intro.mdx +++ b/docs/html/lists/list-intro.mdx @@ -6,7 +6,6 @@ sidebar_position: 1 tags: [html, web-development, lists] description: "In this tutorial, you will learn about lists in HTML. Lists are used to display a collection of items in a structured format." keywords: [html lists, html ul, html ol, html dl, html list items, html list tags] -hide_table_of_contents: true --- Lists in HTML are used to display a collection of items in a structured format. Lists are essential for organizing content, creating navigation menus, and presenting information in a readable manner. HTML provides three types of lists: unordered lists, ordered lists, and definition lists. diff --git a/docs/html/lists/ordered-lists.mdx b/docs/html/lists/ordered-lists.mdx index 46e3407..90fd920 100644 --- a/docs/html/lists/ordered-lists.mdx +++ b/docs/html/lists/ordered-lists.mdx @@ -6,7 +6,6 @@ sidebar_position: 3 tags: [html, web-development, ordered-lists, lists] description: "In this tutorial, you will learn about ordered lists in HTML. Ordered lists are used to display a list of items in a specific order, such as numerical or alphabetical order." keywords: [html ordered lists, html ol, html list items, html list tags, html ordered list example, html ordered list tutorial, html lists tutorial, html in 2024] -hide_table_of_contents: true --- Ordered lists in HTML are used to represent a collection of items in a specific order, such as numerical or alphabetical order. Each item in the list is displayed with a number or letter to indicate its position in the sequence. Ordered lists are commonly used for steps in a process, rankings, and other scenarios where the order of items is important. diff --git a/docs/html/lists/unordered-lists.mdx b/docs/html/lists/unordered-lists.mdx index b82064a..3a943bd 100644 --- a/docs/html/lists/unordered-lists.mdx +++ b/docs/html/lists/unordered-lists.mdx @@ -6,7 +6,6 @@ sidebar_position: 2 tags: [html, web-development, unordered-lists, lists] description: "In this tutorial, you will learn about unordered lists in HTML. Unordered lists are used to display a list of items in no particular order." keywords: [html unordered lists, html ul, html list items, html list tags, html unordered list example, html unordered list tutorial, html lists tutorial, html in 2024] -hide_table_of_contents: true --- Unordered lists in HTML are used to represent a collection of items without any specific order or sequence. Each item in the list is displayed with a bullet point or other marker to indicate that it is part of a list. Unordered lists are commonly used for navigation menus, itemized lists, and other scenarios where the order of items is not important. diff --git a/docs/html/multimedia/adding-audio-and-video.mdx b/docs/html/multimedia/adding-audio-and-video.mdx index a71cb87..9ba7610 100644 --- a/docs/html/multimedia/adding-audio-and-video.mdx +++ b/docs/html/multimedia/adding-audio-and-video.mdx @@ -6,7 +6,6 @@ sidebar_position: 1 tags: [html, web-development, multimedia, audio, video] description: "In this tutorial, you will learn how to add audio and video to your HTML documents using the