Reading-Notes
code fellows 201
Read: 03 - HTML Lists, CSS Boxes, JS Control Flow
HTML & CSS
Chapter 3: Lists (p. 62-73)
Html provides us with 3 types of lists:
- Ordered Lists - A numbered list
- _Unordered List _ - A bullet point list
- Definition List - made up of set terms along with their definition
- Nested List - A list within a list
Chapter 13: Boxes (p. 300-329)

CSS puts elements in HTML in their own boxes. Each bos contains a border, margin, and padding. Use the following links to see style options for the following:
JavaScript & JQuery
Chapter 2: Basic JavaScript Instructions (p. 70-73)
Arrays
This is a data type in JavaScript. It is a list of elements. It is automataclly numbered. The first item on an array is indexed at the value of 0 not 1.