diff --git a/guide/english/html/tutorials/basic-html/index.md b/guide/english/html/tutorials/basic-html/index.md index 432cc6148f..ecd99fdb45 100644 --- a/guide/english/html/tutorials/basic-html/index.md +++ b/guide/english/html/tutorials/basic-html/index.md @@ -1,28 +1,23 @@ --- title: Basic HTML --- + ## Basic HTML -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - - -Structure of a basic HTML file: - +## Basic Page Structure: ```html - + - - - - + ``` -#### More Information: - +## 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 `

`.