Skip to content

Commit 6bc8024

Browse files
committed
Merge branch 'dev-3' of https://github.com/CodeHarborHub/codeharborhub into dev-3
2 parents b45b828 + 9d2144f commit 6bc8024

File tree

4 files changed

+209
-211
lines changed

4 files changed

+209
-211
lines changed

courses/html/_category_.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"label": "HTML",
3-
"position": 3,
4-
"link": {
5-
"type": "generated-index",
6-
"description": "Getting started with HTML, the language that powers the web."
7-
}
8-
}
2+
"label": "HTML",
3+
"position": 3,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "Getting started with HTML, the language that powers the web."
7+
}
8+
}

courses/html/basic/_category_.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"label": "HTML Basics",
3-
"position": 2,
4-
"link": {
5-
"type": "generated-index",
6-
"description": "Learn the basics of HTML, the language that powers the web."
7-
}
8-
}
2+
"label": "HTML Basics",
3+
"position": 2,
4+
"link": {
5+
"type": "generated-index",
6+
"description": "Learn the basics of HTML, the language that powers the web."
7+
}
8+
}

courses/html/basic/intro-html.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ To create your first web page, you need to create an HTML file. An HTML file is
3131

3232
Here is an example of a simple HTML file:
3333

34-
3534
```html title="index.html"
36-
<!DOCTYPE html>
35+
<!doctype html>
3736
<html>
3837
<head>
3938
<title>My First Web Page</title>
@@ -50,7 +49,6 @@ Here is an example of a simple HTML file:
5049
<p>Welcome to my first web page.</p>
5150
</BrowserWindow>
5251

53-
5452
In this example, the HTML file contains the following elements:
5553

5654
- `<!DOCTYPE html>`: This declaration defines the document type and version of HTML.
@@ -82,4 +80,4 @@ HTML is the foundation of web development. Learning HTML is essential for anyone
8280

8381
## Summary
8482

85-
In this section, you learned the basics of HTML, the foundation of web development. You created your first web page using HTML and learned about HTML elements and attributes. HTML is the standard markup language for creating web pages, and it is essential for anyone who wants to create web pages and web applications. In the next section, you will learn more about HTML elements and attributes.
83+
In this section, you learned the basics of HTML, the foundation of web development. You created your first web page using HTML and learned about HTML elements and attributes. HTML is the standard markup language for creating web pages, and it is essential for anyone who wants to create web pages and web applications. In the next section, you will learn more about HTML elements and attributes.

0 commit comments

Comments
 (0)