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 + - -This is a paragraph.
+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