From 39327cfd0c2525b48bb19a73ae519b774908c571 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cezary=20Wa=C5=9B?= <44169282+Qondor@users.noreply.github.com> Date: Tue, 16 Oct 2018 03:13:47 +0200 Subject: [PATCH] Typos and removing scripts from
section. (#19318) * Typos and removing scripts from section. Removed scripts from section description. "contains informations about the web site, exemple: style, meta-tags, scripts, etc..." (exemple on its own have typo), scripts doesn't containt informations about website. * Update index.md * Fixed the english mistakes and used better markdown --- .../guide/english/html/page-structure/index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client/src/pages/guide/english/html/page-structure/index.md b/client/src/pages/guide/english/html/page-structure/index.md index 078819e93a..15f6da20c9 100644 --- a/client/src/pages/guide/english/html/page-structure/index.md +++ b/client/src/pages/guide/english/html/page-structure/index.md @@ -3,7 +3,7 @@ title: Page Structure --- ## Page Structure -To create your pages in `HTML`, you need to know how to structure a page in `HTML`, basically, the structuring a page follows the order below: +To create your pages in `HTML`, you need to know how to structure a page in `HTML`. Usually, the page structure follows the example below: ```HTML @@ -16,21 +16,21 @@ To create your pages in `HTML`, you need to know how to structure a page in `HTM ``` -1º - The `` statement must always be the first to appear on an `HTML` page and tell the browser which version of the language is being used. In this case, we are working with `HTML5`. +1. The `` statement must always be the first to appear on an `HTML` page and tell the browser which version of the language is being used. In this case, we are working with `HTML5`. -2º - The `` and `` tags tell the web browser where the `HTML` code starts and ends. +1. The `` and `` tags tell the web browser where the `HTML` code starts and ends. -3º - The `` and `` tags contains informations about the web site, exemple: style, meta-tags, scripts, etc... +1. The `` and `` tags contains information about the website, e.g. style, meta-tags, etc. -4º - The `