From 93b31248a41934196922abcb7fc002a5f4903a14 Mon Sep 17 00:00:00 2001 From: Eme-rald <36796567+Eme-rald@users.noreply.github.com> Date: Mon, 29 Oct 2018 15:47:58 -0700 Subject: [PATCH] Added Explanation. (#23748) * Added Explanation. * corrected title syntax --- .../html/tutorials/basic-html/index.md | 23 ++++++++----------- 1 file changed, 9 insertions(+), 14 deletions(-) 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 `

`.