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.
This commit is contained in:
JacobTBruce
2018-11-22 03:56:28 -05:00
committed by Manish Giri
parent c5985f2dda
commit a930ebce53

View File

@ -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 [<anchor>](#) 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