View on GitHub

reading-notes

CodeFellows Class Reading Notes

Links to outside websites are created using the anchor element and absolute URLs, as shown below:

<a href="http://www.websitelink.com">Website Name</a>

Alternately, to link to another page within the same website a shorter relative URL can be used:

<a href="relativeLink.html">Page Name</a>

Relative Link Type Example of Relative Link
Same Folder link.html
Child Folder child/link.html
Grandchild Folder child/grandchild/link.html
Parent Folder ../link.html
Grandparent Folder ../../link.html

A link can also prompt the users email program to open by using the following code:

<a href="mailto:me@example.org">Email Me</a>

If you want the link to automatically open in a new window rather than redirecting the current window, use the target attribute:

<a href="http://www.websitelink.com" target="_blank">Website Name</a>

You an also use the id attribute to link to a specific location on a page. ID is targeted using # (just like in CSS).


HTML Ch. 15 - Layout

(Notes focus on p.358 - p.364)

Block-Level Elements

Inline Elements

Positioning Schemes allow you to control the layout of the page


JavaScript Ch. 3 - Functions, Methods, and Objects

Functions consist of a series of statements grouped together to perform a specific task. Depending on how it is expressed, a function may be local or global in scope

Objects are made up of methods and properties and are used to create models of the world using data


6 Reasons for Pair Programming

Pair programming involves two roles: a Driver and a Navigator.

Pair Programming reinforces four key language skills: Listening, Speaking, Reading & Writing

The 6 Reasons for Pair Programming

  1. Greater Efficiency
    • more likely to catch mistakes as they happen
  2. Engaged Collaboration
    • keeps both programmers on track and able to ask for help
  3. Learning from Fellow Students
    • exposure to different problem solving techniques and skill sets
  4. Social Skills -improves communication skills
  5. Job Interview Readiness
    • many interviews use pair programming to test how well a candidate will mesh with the existing team
  6. Work Environment Readiness -pair programming is used in the real world - best to practice now!

Home