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.
- The body element represents the visible content shown to the user.
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.
- Inline CSS is When a developer wants to style an element directly in the HTML file
- External CSS Style Sheet is used when a developer wants to keep the CSS in its own seperate file.
- Internal CSS is when an entire stylesheet is directly in the HTML file using a style element.
Git
- Enter your Git notes here
- git status: checeks what branch we are currently on
- git checkout -b branch-name: creates a new branch and switches to it
- git pull: pulls the latest version of your project from the main branch.
JavaScript
- 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.
- There is multiple types of variables there is const, var, let
- There is multiple data types of a variable includes string, number, date, boolean (True or False)