From the Duckett HTML book:
CHAPTER 4: LINKS
-
LINKING TO OTHER SITES: You can create a links using < a > element which has an attribute called herf, the value of this attribute is the URL of the page that you need people to go it. And between the opening tag < a > and the closing tag </ a > you can enter the name or the text you want to appear in the web page.
-
RELATINE URLS: Relative URLs can be used when linking to pages whith in your own website.
-
EMAIL LINKS: < mailto > : You can create a link of email by starting the value of the href attribute with mailto.
CHAPTER 15: LAYOUT
KEY CONCEPTS IN POSITIONING ELEMENTS
- BUILDING BLOCKS:
- BLOCk-LEVEL ELEMENTS: Block-level boxes start on a new line and act as the main building blocks of any layout.
- INLINE ELEMENTS: Inline boxes flow between surrounding text.
CONTROLLING THE POSITION OF ELEMENTS
- Normal Flow: Every block-level element appears on a new line, causing each item to appear lower down the page than the previous one.
- Relative Positioning: This moves an element from the position it would be in normal flow, shifting it to the top, right, bottom, or left of where it would have been placed.
From the Duckett JS book:
CHAPTER 3: FUNCTIONS, METHODS &OBJECTS
- FUNCTIONS: you can set a group of related statements together. Functions can take parameters (informatory required to do their job) and may return a value.
6 Reasons for Pair Programming - How does pair programming work? 1- The Driver is the programmer who is typing and the only one whose hands are on the keyboard. 2- The Navigator thinks about the big picture, what comes next, how an algorithm might be converted in to code, while scanning for typos or bugs.
Why pair program?
- To make greater efficiency
- To engage collaboration
- Learning from fellow students
- Social skills
- Job interview readiness
- Work environment readiness.