User Interface
Git for Web Development
Intro CSS
CSS Layouts
Misc
100

what does HTML stand for?

hypertext markup language

100

**true or false**

cd stands for change direction

**false**

cd = change directory

100

**true or false** 

margin and padding do the same thing

false

100

**true or false**

justify-content and align-content do the same thing

false 

100

The default font size in browsers

16px

200

**true or false** 

<paragraph> is an html tag

false

200

what does 'ls' do in the terminal?

lists the items in the current directory

200

what's the universal selector?

200

This refers to items within a flex container

flex items 

200

**true or false**

flexbox is a lot cooler then inline css blocks

truueeeeeeeeeee

300

**fill in the blank**

[blank] is used to target ids in css

#, hashtag, pound sign, tic tac toe looking thingy

300

**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

300

This is an invisible area that surrounds your content, padding, and border. It is the outermost area in the box model.

margin

300

**true or false**

flex-direction: is set to column by default

false

flex-direction is set to row by default

300

what are the 4 areas of the box model?

margin, padding, border, content

400

what does CSS stand for?

cascading style sheet 

400

what does cd ~ do

it will bring you back to your home directory

400

**fill in the blank**

The [blank] is the transparent area between the border and the content. It is very similar to the margin.

padding

400

what must we add to a CSS property before we can use flexbox

display: flex;

400

what axis does align-items: center work on?

cross axis

500

**fill in the blank**

[blank] is used to target classes in css

. or dot or period

500

how do you create a new branch?

branch <name> 

... or ...
git checkout -b <name>

500

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

500

**fill in the blank**

flex-flow is the shorthand version of [blank] and [blank]


flex-direction and flex-wrap 

500

what axis does justify-content work on?

main axis