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
what does HTML stand for?
Hypeteext markup language
what does CSS stand for
cascading style sheets
What do we add to an element to give it the extra properties of flexbox?
display: flex
command to get a repo from github to your local pc
git clone LINK
name at least 3 different tags
H1 - H6
P
section
div
header
nav
footer
what does margin: 0 auto do?
applies zero margin on the top and bottom and automatically set margin on left and right
What is the default flex direction for flexbox?
row
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
What does semantic mean?
providing meaningful content
keep code readable
readable websites that are easily interpreted by search engines and screen readers
What do CSS selectors do?
access html tags in order to style them
Which Flexbox property would you access to wrap elements into a new line
flex-wrap
what command would u use in order to get a partners branch of code onto your pc
git pull BRANCH NAME
what is the difference between HTML and CSS?
HTML is building and organizing the basic outline of your page whereas CSS styles it
What CSS rule can you add to an element to override any specificity?
!important
What are the names of the two axes that elements are aligned with in flexbox
Cross axis and main axis
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
What are the HTML element name for adding a form and input field?
<form>
<input>
</form>
Name a CSS framework/library
bootstrap --- foundation --- bulma
webkit --- atomize --- Carousel
what would you use to make your site mobile responsive in CSS?
media queries