Reading-Notes
code fellows 201
Read: 04 - HTML Links, CSS Layout, JS Functions
HTML & CSS
Chapter 4: Links (p. 74-93)
A Link is an element within a webpage that allows you to travel to another webpage. They are found between the a tags. You can make links to things like emails, open window in new pages, links to a specific section of a web page, specific parts of another page, and so on. Link text
When linking pages on the same sit you canuse a relative URL instead of a full URL. This is just the end part of the URL.
A Directory is a folder in a repository. You sould organize by placing the pages for each diffrent section of the site in a new folder.
Chapter 15: Layout (p. 358-404)
JavaScript & JQuery
Chapter 3: Functions, Methods, and Objects (p. 86-99 ONLY)
Functions & Objectives
Functions are groups or series of statements that allow you to preform a specific task Think of this like having a group of functions in a prepared envelope with letters inside that can be called upon to be sent out. A function must first be declared, before it can be called upon.