From a930ebce5358acdc4aea227b5d4e0b0f60ac1d0d Mon Sep 17 00:00:00 2001 From: JacobTBruce <44300141+JacobTBruce@users.noreply.github.com> Date: Thu, 22 Nov 2018 03:56:28 -0500 Subject: [PATCH] Changed wording to make easier to read (#23180) Changed "ascribe" to "attribute" in line 7 so make reading easier. Also changed "The" to "This" on lines 38, 40, 42, 44, and 46 to show that the element possessed that attribute and to help make it easier to read. --- guide/english/html/index.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/guide/english/html/index.md b/guide/english/html/index.md index 14ac78380c..4cc9796c92 100644 --- a/guide/english/html/index.md +++ b/guide/english/html/index.md @@ -4,10 +4,14 @@ title: HTML # HTML + HyperText Markup Language (HTML) is a markup language used to construct online documents and is the foundation of most websites today. A markup language like HTML allows us to: + 1) Create links to other documents - 2) Atructure the content in our document - 3) Ascribe context and meaning to the content of our document + 2) Structure the content in our document + 3) Attribute context and meaning to the content of our document + + An HTML document has two aspects to it. It contains structured information (Markup), and text-links (HyperText) to other documents. We structure our pages using [HTML elements](#). They are constructs of the language providing [structure](#) and [meaning](#) in our document for the browser and [](#) linking to other documents across the internet. @@ -40,15 +44,15 @@ HTML5 introduced a host of semantic elements. As discussed, HTML provides meanin html: The root element of an HTML page -head: The element contains meta information about the document +head: This element contains meta information about the document -title: The element specifies a title for the document +title: This element specifies a title for the document -body: The element contains the visible page content +body: This element contains the visible page content -h1: The element defines a large heading +h1: This element defines a large heading -p: The element defines a paragraph +p: This element defines a paragraph ### HTML Tags