Prework Study Guide
✨ Open the Console to See What's Happening ✨
HTML
- Enter your HTML notes here
- The head element contains information about the webpage.
CSS
- Enter your CSS notes here
- 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.
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
- git add -A: adds modifications to the current branch into the staging area
- git commit -m "comment": commits changes to the branch
- git pull origin main: pulls changes for main to make sure we are up to date before pushing
- git push origin branchName
JavaScript
- Enter your JavaScript notes here