reading-notes

Code-Fellows reading notes.

View the Project on GitHub bkasprzyk19/reading-notes

<==Back

Reading From the Duckett HTML book:

Chapter 4: Ch.4 “Links” (pp.74-93) Chapter 15: “Layout” (pp.358-404) Note: This layout chapter is BIG. Focus your attention on understanding the core concepts presented on pp.358-364, and look at the code samples on the website that accompanies the textbook. You will have another reading assignment on this chapter, so do not try to digest it all now.

From the Duckett JS book:

Chapter 3 (first part): “Functions, Methods, and Objects” (pp.86-99 ONLY) Article: “6 Reasons for Pair Programming”

Functions and Methods

Objects

Built-In Objects

Basic Functions

Steps:

<script src="./js/app1.js"></script>

function sayHello() {
` document.write(‘Hello!’);}`

sayHello();

or

funtion getArea(width * height) {
reutrn width * height;}

LAYOUT

Building Blocks

Positioning Schemes!

Link to CSS examples from the book: http://htmlandcssbook.com/code-samples/chapter-15/

h1{ position: fixed; }