diff --git a/docs/html/html-basics/document-structure.md b/docs/html/html-basics/document-structure.md
index dca0fb817..f33d21fc8 100644
--- a/docs/html/html-basics/document-structure.md
+++ b/docs/html/html-basics/document-structure.md
@@ -7,4 +7,70 @@ 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.
---
-
`), lists (`
`) can be nested inside a div element (`
This is a paragraph.
-``` +## HTML Elements -In this example: -- `` is the start tag. -- `This is a paragraph.` is the content. -- `
` is the end tag. +HTML elements are the basic building blocks of an HTML page. They define the structure and content of the web page and are enclosed in opening and closing tags. Each element can contain text, other elements, or both. -### What are HTML Tags? +Here is an example of an HTML element: -Tags are the syntax used to create HTML elements. They are enclosed in angle brackets (`<` and `>`). Tags come in pairs, with an opening tag (start tag) and a closing tag (end tag), although some tags are self-closing. +```html title="index.html" +This is a paragraph element.
+``` -### Basic Structure of an HTML Document +In this example, the `` element defines a paragraph, and the text "This is a paragraph element." is the content of the paragraph. -An HTML document has a specific structure that includes the following elements: +HTML elements can be nested inside each other to create a hierarchical structure. For example: -```html - - -
-Paragraph of text.
- - +```html title="index.html" +This is a paragraph.
+` paragraph element.
`: Defines a paragraph.
- - ``: Defines a hyperlink.
-
- ```html
- Link to Example
- ```
-
- - ``: Defines important (bold) text.
- - ``: Defines emphasized (italic) text.
- - `
`: Inserts a line break.
- - `
`: Inserts a horizontal rule.
-
-3. **Lists**
-
- Lists are used to group related items.
-
- - ``: Defines an unordered list.
- - `
`: Defines an ordered list.
- - `
-
-
-
- ```
-
-4. **Tables**
-
- Tables are used to display data in a tabular format.
-
- - ``: Defines a table.
- - `
`: Defines a table row.
- - ` `: Defines a table cell.
- - ` `: Defines a table header cell.
-
- ```html
-
-
- ```
-
-5. **Forms**
-
- Forms are used to collect user input.
-
- - `
-
- Header 1
- Header 2
-
-
- Cell 1
- Cell 2
-