Chapter 1 (Welcome To Webville) Notes:
- HTML4.01 to HTML5 simplified a lot of syntax for example,
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
was simplified to <meta charset="utf-8">
.
- The browser makes a internal model of the page with each element representing a new object on the tree-like structure. This model is called the DOM (Document Object Model).
- DOM plays a vital role in the behavior of pages with javascript.
-
Ninety-nine Cans of Dr. Pepper
Return to Head First Javascript Hub
Return to Main Page