what does html stand for
hypertext markup language
**true or false**
cd stands for change direction
**false**
cd = change directories
**true or false**
margin and padding does the same thing
false
**true or false**
justify-content and align-content does the same thing
false
what's should be your html font-size before incorporating rems, ems, etc
62.5%
**true or false**
<paragraph> is an html tag
false
what does 'ls' do in the terminal?
it'll list all of the items currently found in the current directory you're in
what's the universal selector?
*
are items called within a flex container
flex items
**true or false**
flexbox is a lot cooler then inline css blocks
truueeeeeeeeeee
**fill in the blank**
[blank] is used to target ids in css
#, hashtag, pound sign, tic tac toe looking thingy
**true or false**
you'll clone the project AND THEN you'll fork the project
false
you'll fork the project first and then clone to your computer
**fill in the blank**
the [blank] is an invisible area that surrounds your content, padding, and border. This is the outermost area in the box model
margins
**true or false**
flex-direction: is set to column by default
false
flex-direction is set to row by default
what are the 4 areas of the box model?
margin, padding, border, content
what does css stand for
cascading style sheet
what does cd ~ do
it'll bring you back to your root directory
**fill in the blank**
The [blank] is the transparent area between the border and the content. It is very similar to the margin.
padding
what must we add to a CSS property before we can use flexbox
display: flex;
what axis does align-items: center work on?
cross axis
**fill in the blank**
[blank] is used to target classes in css
. or dot or period
how do you create a new branch?
git checkout -b `branch name`
there are 3 different ways to add CSS styles to an HTML page, list them
inline styles
embedded style tags in the HTML page
and my personal favorite, the externally linked CSS file
**fill in the blank**
flex-flow is the shorthand version of [blank] and [blank]
flex-direction and flex-wrap
what axis does justify-content work on?
main axis