HTML Section Copy Edit

Waterloo ENGL 210J Student  
Line 44: Changed tense
Line 54: Changed wording of second sentence to not start with 'and'. Added DOM meaning (Document Object Model)
This commit is contained in:
amandaegraham 2016-07-18 22:03:19 -04:00 committed by Naomi Black
parent ff46ee0282
commit e8642d4616
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ block includes
.l-main-section
:marked
## HTML
HTML is the language of the Angular template. Our [QuickStart](../quickstart.html) application had a template that was pure HTML:
HTML is the language of the Angular template. Our [QuickStart](../quickstart.html) application has a template that is pure HTML:
code-example(language="html" escape="html").
<h1>My First Angular 2 App</h1>
@ -51,7 +51,7 @@ code-example(language="html" escape="html").
Some legal HTML doesnt make much sense in a template. The `<html>`, `<body>`, and `<base>` elements have no useful role in our repertoire. Pretty much everything else is fair game.
We can extend the HTML vocabulary of our templates with components and directives that appear as new elements and attributes. And we are about to learn how to get and set DOM values dynamically through data binding.
We can extend the HTML vocabulary of our templates with components and directives that appear as new elements and attributes. In the following sections we are going to learn how to get and set DOM (Document Object Model) values dynamically through data binding.
Lets turn to the first form of data binding &mdash; interpolation &mdash; to see how much richer template HTML can be.