HTML & CSS Chapter 4: Links
- Links are created using the element.
- The element uses the href attribute to indicate the page you are linking to.
- You want to use relative links if you are linking to a page within your own site.
- You can create links to open email programs.
- You can use the id attributes to target elements within a page.
HTML & CSS Chapter 15: Layout
-
elements are often used as containing elemetns to group together sections of a page.
- Browsers display pages in normal flow unless you specify relative, absolute, or fixed positioning.
- The float property moves content to the left or right of the page. Floated items require a defined width.
- Pages can be setup with a fixed width or liquird aka stretchy layout.
- Designers keep pages within 960-100vpixels wide.
- Grids help create professional and flexible designs.
- CSS Frameworks provide rules for common tasks.
- You can include multiple CSS files in one page.
JavaScript Chapter 3: Functions, Methods, and Objects
- Functions allow you to group a set of realted statements together that represent a single task.
- Functions can take parameters and may return a value.
- An object is a series of variables and functions that represent something from the world around you.
- In an object, variables are known as properties of the object, funnctions are known as methods of the object.
-
Web browsers implement objects that represent both the browser window and the document loaded into the browser window.
- <===Back