Skip to content

Commit 73fe5b6

Browse files
authored
Updated syntax-structure-html.md
1 parent e9bcd5e commit 73fe5b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/html/syntax-structure-html.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ HTML syntax consists of a set of elements, tags, attributes, and their combinati
1515
```html
1616
<tagname>Content goes here</tagname>
1717
```
18-
2. **Tags**: Tags are keywords enclosed in angle brackets (<>) that define the structure and content of HTML elements. They can be categorized into two types:
18+
2. **Tags**: Tags are keywords enclosed in angle brackets `<>` that define the structure and content of HTML elements. They can be categorized into two types:
1919

2020
+ **Opening Tags** : They denote the beginning of an element and have the tag name wrapped in angle brackets.
2121
```html
2222
<tagname>
2323
```
24-
+ **Closing Tags** : They denote the end of an element and have the tag name wrapped in angle brackets, preceded by a forward slash (/).
24+
+ **Closing Tags** : They denote the end of an element and have the tag name wrapped in angle brackets, preceded by a forward slash `/`.
2525

2626
```html
2727
</tagname>
@@ -92,4 +92,4 @@ Here's a basic HTML structure:
9292

9393
### conclusion
9494

95-
Together, HTML syntax and structure enable developers to craft web pages that are both functional and user-friendly, facilitating seamless navigation and interaction for visitors. Understanding and adhering to these principles is essential for creating well-structured, semantically meaningful, and standards-compliant web content.
95+
Together, HTML syntax and structure enable developers to craft web pages that are both functional and user-friendly, facilitating seamless navigation and interaction for visitors. Understanding and adhering to these principles is essential for creating well-structured, semantically meaningful, and standards-compliant web content.

0 commit comments

Comments
 (0)