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:
parent
ff46ee0282
commit
e8642d4616
|
@ -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 doesn’t 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.
|
||||
|
||||
Let’s turn to the first form of data binding — interpolation — to see how much richer template HTML can be.
|
||||
|
||||
|
|
Loading…
Reference in New Issue