diff --git a/guide/english/html/tutorials/basic-html/index.md b/guide/english/html/tutorials/basic-html/index.md index 761bc8f77b..946c29bbfc 100644 --- a/guide/english/html/tutorials/basic-html/index.md +++ b/guide/english/html/tutorials/basic-html/index.md @@ -4,7 +4,8 @@ title: Basic HTML ## Basic HTML -## Basic Page Structure: + +### Basic Page Structure: ```html @@ -15,32 +16,45 @@ title: Basic HTML ``` -Html Headings -HTML headings are with the

to

tags. +### Sample HTML Program +```html + + +Page Title + + + +

This is a Heading

+

This is a paragraph.

+ + + +``` + +## HTML Headings + +HTML headings are with the

to

tags. + +Example: +```html

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6
+``` -** out put ** - -//when you type this and get the out put you can see the different --------------------- - - - - -#### More Information: - - - -## Explanation: +## Explanation The `` is to tell the browser you want the page to be rendered using HTML5. The `` is were you want to put things that help the browser and search engines such as `` and ``. The `` is were the tags that will display on the page are such as `

` or `

`. + + +#### More Information + + - [W3schools](https://www.w3schools.com/html/) \ No newline at end of file