Prework Study Guide
✨ Open the Console to See What's Happening hint* Command+Option+I ✨
HTML
- Enter your HTML notes here
- The head element contains information about the webpage.
- The body element represents the visible content shown to the user.
- The h1 h2 h3 h4 h5 and h6 elements represent the level of heading a given text block represents
- * The ul ol and li elements represent unordered lists, ordered lists, and list items. In essence, these HTML elements represent bulleted or numbered lists. In our example, the ul element contains an unordered, or bullet, list of the reasons why we like pandas. This code is shown here:
CSS
- A margin indicates how much space we want around the outside of an element.
- A padding indicates how much space we want around the content inside an element.
- It is good practice to separate the css functions and code from the HTML code for eaiser coding clean up and work flow, it also helps with finding bugs
- See this site for CSS resources VisitCSS: Cascading Style Sheets!
Git
- Enter your Git notes here
- git status: checks what branch we are currently on
- git checkout -b branch-name: creates a new branch and switches to it
JavaScript
- Enter your JavaScript notes here
- a "For" loop is an array that is used to help audomate the coding process.
- A variable is a named container that allows us to store data in our code.
- Control flow is the order in which a computer executes code in a script.