Skip to content

Restyle HTML course started #3961

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions courses/html/_category_.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"label": "HTML",
"position": 3,
"link": {
"type": "generated-index",
"description": "Getting started with HTML, the language that powers the web."
}
}
"label": "HTML",
"position": 3,
"link": {
"type": "generated-index",
"description": "Getting started with HTML, the language that powers the web."
}
}
14 changes: 7 additions & 7 deletions courses/html/basic/_category_.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"label": "HTML Basics",
"position": 2,
"link": {
"type": "generated-index",
"description": "Learn the basics of HTML, the language that powers the web."
}
}
"label": "HTML Basics",
"position": 2,
"link": {
"type": "generated-index",
"description": "Learn the basics of HTML, the language that powers the web."
}
}
6 changes: 2 additions & 4 deletions courses/html/basic/intro-html.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ To create your first web page, you need to create an HTML file. An HTML file is

Here is an example of a simple HTML file:


```html title="index.html"
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<title>My First Web Page</title>
Expand All @@ -50,7 +49,6 @@ Here is an example of a simple HTML file:
<p>Welcome to my first web page.</p>
</BrowserWindow>


In this example, the HTML file contains the following elements:

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

## Summary

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.
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.
Loading
Loading