Git
HTML
CSS
CSS Flexbox
100

what is the difference between git and github

git is a tool to manage your source code history.
github is a hosting service for repositories of code/projects

100

what does HTML stand for?

Hypeteext markup language

100

what does CSS stand for

cascading style sheets

100

What do we add to an element to give it the extra properties of flexbox?

display: flex

200

command to get a repo from github to your local pc

git clone LINK

200

name at least 3 different tags

H1 - H6
P
section
div
header
nav
footer

200

what does margin: 0 auto do?

applies zero margin on the top and bottom and automatically set margin on left and right

200

What is the default flex direction for flexbox?

row

300

why do we use git / github as developers

GIT Version Control System so we can go back at any time
Github being open source makes it easier to share projects and work on them together 

300

What does semantic mean?

providing meaningful content
keep code readable
readable websites that are easily interpreted by search engines and screen readers

300

What do CSS selectors do?

access html tags in order to style them

300

Which Flexbox property would you access to wrap elements into a new line

flex-wrap

400

what command would u use in order to get a partners branch of code onto your pc

git pull BRANCH NAME

400

what is the difference between HTML and CSS?

HTML is building and organizing the basic outline of your page whereas CSS styles it 

400

What CSS rule can you add to an element to override any specificity? 

!important

400

What are the names of the two axes that elements are aligned with in flexbox 

Cross axis and main axis

500

what are all the steps to pushing up current code with git to github?

cd to proper folder/file
git init
git status
git add .
git commit -m "some informations message of current code"
git push origin BRANCH NAME

500

What are the HTML element name for adding a form and input field?

<form>

<input>

</form>

500

Name a CSS framework/library

bootstrap --- foundation --- bulma
webkit --- atomize --- Carousel

500

what would you use to make your site mobile responsive in CSS?

media queries

M
e
n
u