Skip to content

Commit 585ad0d

Browse files
Restyled by prettier-markdown
1 parent bdfd1c4 commit 585ad0d

File tree

2 files changed

+195
-197
lines changed

2 files changed

+195
-197
lines changed

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)