reading-notes

code fellows reading notes

View on GitHub

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:

Chapter 13: Boxes (p. 300-329)

Image of ref

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.

Chapter 4: Decisions and Loops (p. 162-182)

Using Statements