Code-Fellows reading notes.
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”
Steps:
<script src="./js/app1.js"></script>
function sayHello() {
` document.write(‘Hello!’);}`
sayHello();
funtion getArea(width * height) {
reutrn width * height;}
Link to CSS examples from the book: http://htmlandcssbook.com/code-samples/chapter-15/
h1{
position: fixed;
}