reading-notes

HTML Links, JS Functions, and Intro to CSS Layout

Reading

Learn HTML

Creating Hyperlinks

  1. To create a basic link, we wrap text or other content inside what element?

  2. The href attribute contains what information?

  3. What are some ways we can ensure links on our pages are accessible to all readers?

CSS Layout

CSS Layout: Normal Flow CSS Layout: Positioning

  1. What is meant by “normal flow”?

  2. What are a few differences between block-level and inline elements?

  3. ___ positioning is the default for every html element.

  4. Name a few advantages to using absolute positioning on an element.

  5. What is a key difference between fixed positioning and absolute positioning?

Learn JS

Functions – Reusable Blocks of Code

  1. Describe the difference between a function declaration and a function invocation.

  2. What is the difference between a parameter and an argument?

Miscellaneous

6 Reasons for Pair Programming

  1. Pick 2 benefits to pair programming and reflect on how these benefits could help you on your coding journey.

Things I want to know more about