Reading: html links, js functions

When linking you can link to…

  1. other sites
  2. linking to other pages on same site
  3. email links href="mailto:jon@google.com"
  4. links that open things in a new window using target="_blank"
  5. linking to a certain part in a long page <a href="#top"></a>

Layouts

When starting you html page html treats each element as a block that stacks on each other. Containing elements holds other elements inside its block.

Fixed vs Liquid layouts

  1. Fixed layouts
    • fixed layouts give the programer more control over elements and text ing the page when laying out the page but can be a problem when users are using multiple sized screens.
  2. Liquid Layouts
    • liquid layouts give the browsers flexibility across many different sized displays but also can cause a messy look on displays that are to big or to small.

Functions and Objects

Functions

let you put a series of statements together and then by calling the function you can call it anywhere you want in the code

Declaring a function

Pair Programming

pair programming consists of a driver aka the coder and the navigator.

6 positive outcomes of pair programming

  1. Greater efficiency
  2. Engaged collaboration
  3. Learning from fellow students
  4. Social skills
  5. Job interview readiness
  6. Work environment readiness