View on GitHub

reading-notes

My learning journal for Code Fellows

HTML Lists, Control Flow with JS, and the CSS Box Model

CSS Reading

Lists

A variety of lists can be interjected into the HTML structure. In addition to the previously mentioned <ul> and <ol> one can also create definition lists.

definition list

Boxes

Boxes, as CSS understands them, are just big enough to hold the content within them. This size is determined by % of page, pixels, or ems.

Border, Margin, and Padding

Helpful CSS Properties

JavaScript Reading

A lot of the reading in the Java Script reading can be found in the Java section of 102, but there was one section that was new to me. See below.

Switch Statements

Switch statements: Start with a variable called a a switch value. from there you fill out the switch code, shown below, where the input value triggers one ‘case’. When that case is executed, it fires an output, and when it hits ‘break;’, it stops.

switch image

We can see here the based on if it is x or y fired, there will be a specific outcome coded out for an output. The default here is essentially functioning as an else in this case.