diff --git a/guide/english/html/tutorials/basic-html/index.md b/guide/english/html/tutorials/basic-html/index.md index ab0abccb61..82a408b22d 100644 --- a/guide/english/html/tutorials/basic-html/index.md +++ b/guide/english/html/tutorials/basic-html/index.md @@ -15,7 +15,7 @@ The visible part of your HTML lies within the `` tag which will be inside Below you can see the structure of a basic HTML file: -### Basic Page Structure: +## Basic Page Structure ```html @@ -28,26 +28,31 @@ Below you can see the structure of a basic HTML file: ``` - ### Sample HTML Program ```html + - -Page Title - - + + Page Title + + -

This is a Heading

-

This is a paragraph.

+

This is a Heading

+

This is a paragraph.

- + ``` -## HTML Headings +### Explanation +- `` - This is called a declaration, which lets the filereader know which version of HTML running. In this case, it will automatically run HTML5. +- `` - lets the filereader know where the HTML code starts. It is closed with `` located at or near the end of a document. +- `` - where you put metadata like `title`, `author`, `keywords`, and `meta` that help the browser and search engines. None of the elements written here will be visible once the code gets read +- `` - where the display elements are added to the page, such as `

` or `

` elements. -HTML headings are with the

to

tags. +## HTML Heading Elements +HTML heading elements are declared with the `

` to `

` tags. Example: ```html @@ -59,15 +64,6 @@ Example:
Heading 6
``` -## 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 - - - [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML) - - [W3schools](https://www.w3schools.com/html/) +## Additional Resources +- [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML) +- [W3schools](https://www.w3schools.com/html/)