- If you had to describe semantic HTML to the next cohort of students, what would you say? Semantic HTML brings meaning to the web page rather making it presentational.
- Describe some differences between
display: block;anddisplay: inline;. Block elements start on a new line and take up the full available width. Inline elements don't start on a new line and take up a smuch width as they need. - What are the 4 areas of the box model? Content, padding, border, margin
- While using flexbox, what axis are you using when you use the property:
align-items: center? You are using the cross axis. - What is the git command to commit staged changes as well as write a message? git commit -m