Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.21 KB

File metadata and controls

32 lines (22 loc) · 1.21 KB

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)

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