Skip to content

Commit bde1021

Browse files
committed
Fix: bugs
1 parent b161452 commit bde1021

22 files changed

+118
-12
lines changed
File renamed without changes.
File renamed without changes.

docs/html/next-steps-and-resources/advanced-html-topics.md renamed to docs/html/next-steps-and-resources/advanced-html-topics.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Advanced HTML Topics
44
sidebar_label: Advanced HTML Topics
55
sidebar_position: 2
66
tags: [html, web-development, advanced]
7-
description: In this tutorial, we will explore advanced HTML topics such as web components, microdata, and more.
7+
description: "In this tutorial, we will explore advanced HTML topics such as web components, microdata, and more."
88
keywords:
99
[
1010
advanced html,
@@ -14,11 +14,13 @@ keywords:
1414
html5,
1515
html best practices,
1616
]
17+
hide_table_of_contents: true
1718
---
1819

1920
In this tutorial, we will explore advanced HTML topics such as web components, microdata, semantic HTML, and more.
2021

2122
<AdsComponent />
23+
<br />
2224

2325
## Web Components
2426

@@ -61,6 +63,7 @@ Here's an example of how to create a custom element using the Custom Elements AP
6163
In the above example, we define a custom element called `my-element` that displays the text "Hello, World!" when inserted into the document.
6264

6365
<AdsComponent />
66+
<br />
6467

6568
## Microdata
6669

docs/html/next-steps-and-resources/community-support.md renamed to docs/html/next-steps-and-resources/community-support.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ title: Community Support
44
sidebar_label: Community Support
55
sidebar_position: 3
66
tags: [html, web-development, community, support]
7-
description: In this tutorial, we will explore the community support available for HTML and web development.
7+
description: "In this tutorial, we will explore the community support available for HTML and web development."
8+
hide_table_of_contents: true
89
---
910

1011
Now, If you are stuck with a problem or have a question, you can always ask for help from the community. keep in mind that the community is always there to help you.

docs/html/next-steps-and-resources/further-learning-resources.md renamed to docs/html/next-steps-and-resources/further-learning-resources.mdx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Further Learning Resources
44
sidebar_label: Further Learning Resources
55
sidebar_position: 1
66
tags: [html, web-development, resources]
7-
description: In this tutorial, we will explore further learning resources for HTML and web development.
7+
description: "In this tutorial, we will explore further learning resources for HTML and web development."
88
keywords:
99
[
1010
html resources,
@@ -19,4 +19,12 @@ keywords:
1919
hide_table_of_contents: true
2020
---
2121

22-
<Comming />
22+
import ComingSoon from '@site/src/components/ComingSoon';
23+
24+
In this tutorial, we will explore further learning resources for HTML and web development. These resources include online tutorials, courses, books, and more.
25+
26+
<!-- Coming soon -->
27+
28+
<ComingSoon />
29+
30+
<br/>

docs/html/responsive-web-design/flexbox-and-grid-layout.md renamed to docs/html/responsive-web-design/flexbox-and-grid-layout.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Flexbox and Grid Layout
44
sidebar_label: Flexbox and Grid Layout
55
sidebar_position: 3
66
tags: [html, web-development, flexbox, grid-layout]
7-
description: In this tutorial, you will learn how to use Flexbox and Grid Layout to create responsive web designs and build complex layouts in HTML and CSS.
7+
description: "In this tutorial, you will learn how to use Flexbox and Grid Layout to create responsive web designs and build complex layouts in HTML and CSS."
88
keywords:
99
[
1010
flexbox,
@@ -15,11 +15,13 @@ keywords:
1515
web layout,
1616
web design,
1717
]
18+
hide_table_of_contents: true
1819
---
1920

2021
In this tutorial, you will learn how to use Flexbox and Grid Layout to create responsive web designs and build complex layouts in HTML and CSS.
2122

2223
<AdsComponent />
24+
<br />
2325

2426
## What is Flexbox?
2527

@@ -64,6 +66,7 @@ Here's an example of how to create a simple Flexbox layout:
6466
In the above example, we create a flex container with three flex items. We use the `display: flex` property on the container to enable Flexbox layout. We also use the `justify-content: space-between` property to distribute the items evenly within the container.
6567

6668
<AdsComponent />
69+
<br />
6770

6871
## What is Grid Layout?
6972

@@ -108,6 +111,7 @@ Here's an example of how to create a simple Grid Layout:
108111
In the above example, we create a grid container with three grid items. We use the `display: grid` property on the container to enable Grid Layout. We also use the `grid-template-columns: repeat(3, 1fr)` property to define a three-column grid with equal widths. The `gap: 10px` property adds spacing between the grid items.
109112

110113
<AdsComponent />
114+
<br />
111115

112116
## Flexbox vs. Grid Layout
113117

docs/html/responsive-web-design/introduction-to-responsive-design.md renamed to docs/html/responsive-web-design/introduction-to-responsive-design.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction to Responsive Web Design
44
sidebar_label: Introduction to Responsive Design
55
sidebar_position: 1
66
tags: [html, web-development, responsive-web-design]
7-
description: In this tutorial, you will learn the basics of responsive web design and how to create responsive websites that work on all devices.
7+
description: "In this tutorial, you will learn the basics of responsive web design and how to create responsive websites that work on all devices."
88
keywords:
99
[
1010
responsive web design,
@@ -15,11 +15,13 @@ keywords:
1515
responsive web design basics,
1616
responsive web design examples,
1717
]
18+
hide_table_of_contents: true
1819
---
1920

2021
In this tutorial, you will learn the basics of responsive web design and how to create responsive websites that work on all devices.
2122

2223
<AdsComponent />
24+
<br />
2325

2426
## What is Responsive Web Design?
2527

docs/html/responsive-web-design/media-queries-and-breakpoints.md renamed to docs/html/responsive-web-design/media-queries-and-breakpoints.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Media Queries and Breakpoints in Responsive Web Design
44
sidebar_label: Media Queries and Breakpoints
55
sidebar_position: 2
66
tags: [html, web-development, responsive-web-design, media-queries, breakpoints]
7-
description: In this tutorial, you will learn how to use media queries and breakpoints to create responsive web designs that adapt to different screen sizes and devices.
7+
description: "In this tutorial, you will learn how to use media queries and breakpoints to create responsive web designs that adapt to different screen sizes and devices."
88
keywords:
99
[
1010
media queries,
@@ -14,13 +14,15 @@ keywords:
1414
css media queries,
1515
responsive breakpoints,
1616
]
17+
hide_table_of_contents: true
1718
---
1819

1920
In responsive web design, media queries and breakpoints are essential tools for creating websites that adapt to different screen sizes and devices. Media queries allow you to apply specific styles based on the device's characteristics, such as screen width, height, and orientation. Breakpoints define the points at which the layout of a website changes to accommodate different screen sizes.
2021

2122
In this tutorial, you will learn how to use media queries and breakpoints to create responsive web designs that work well on desktops, laptops, tablets, and mobile phones.
2223

2324
<AdsComponent />
25+
<br />
2426

2527
## What are Media Queries?
2628

docs/html/semantic-html/benefits-of-semantic-html.md renamed to docs/html/semantic-html/benefits-of-semantic-html.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ title: Benefits of Semantic HTML
44
sidebar_label: Benefits of Semantic HTML
55
sidebar_position: 3
66
tags: [html, web-development, semantic-html, benefits-of-semantic-html]
7-
description: In this tutorial, you will learn about the benefits of using semantic HTML to improve the accessibility, search engine optimization (SEO), and maintainability of your web pages.
7+
description: "In this tutorial, you will learn about the benefits of using semantic HTML to improve the accessibility, search engine optimization (SEO), and maintainability of your web pages."
88
keywords: [semantic html benefits, semantic html advantages, semantic html importance, semantic html benefits for seo, semantic html accessibility]
9+
hide_table_of_contents: true
910
---
1011

1112
Semantic HTML provides a structured and meaningful way to organize web content. By using semantic elements, you can enhance the accessibility, search engine optimization (SEO), and maintainability of your web pages. Let's explore some key benefits of using semantic HTML:
1213

1314
<AdsComponent />
15+
<br />
1416

1517
## 1. Improved Accessibility
1618

@@ -25,6 +27,7 @@ Search engines rely on the structure and semantics of your HTML content to under
2527
Semantic HTML encourages a clear separation of content and presentation, making your code more maintainable and easier to update. By using semantic elements to define the structure of your web pages, you create a consistent and logical layout that is easier to modify and extend. This separation also allows you to update the styling and layout without affecting the underlying content.
2628

2729
<AdsComponent />
30+
<br />
2831

2932
## 4. Consistent User Experience
3033

docs/html/semantic-html/semantic-html5-elements.md renamed to docs/html/semantic-html/semantic-html5-elements.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ title: Semantic HTML5 Elements
44
sidebar_label: Semantic HTML5 Elements
55
sidebar_position: 2
66
tags: [html, web-development, semantic-html, semantic-html5-elements]
7-
description: In this tutorial, you will learn about semantic HTML5 elements and how they can improve the structure, accessibility, and search engine optimization (SEO) of your web pages.
7+
description: "In this tutorial, you will learn about semantic HTML5 elements and how they can improve the structure, accessibility, and search engine optimization (SEO) of your web pages."
88
keywords: [semantic html5 elements, semantic html5 tags, semantic html5 benefits, semantic html5 importance, html5 semantic elements]
9+
hide_table_of_contents: true
910
---
1011

1112
Semantic HTML5 elements provide meaning to web content beyond mere presentation. They help in creating accessible and search engine friendly web pages by clearly defining the structure and purpose of different parts of web content.
1213

1314
<AdsComponent />
15+
<br />
1416

1517
## Common Semantic HTML5 Elements
1618

@@ -83,6 +85,7 @@ Defines content aside from the content it is placed in (like a sidebar). The con
8385
</BrowserWindow>
8486

8587
<AdsComponent />
88+
<br />
8689

8790
### `<footer>`
8891

@@ -131,6 +134,7 @@ Defines a header for a document or a section. It typically contains introductory
131134
</BrowserWindow>
132135

133136
<AdsComponent />
137+
<br />
134138

135139
### `<nav>`
136140

@@ -191,6 +195,7 @@ Represents a specific time or date. It can be used to mark up dates, times, or d
191195
</BrowserWindow>
192196

193197
<AdsComponent />
198+
<br />
194199

195200
## Benefits of Semantic HTML5 Elements
196201

0 commit comments

Comments
 (0)