- If you had to describe semantic HTML to the next cohort of students, what would you say?
Semantic HTML is just using HTML tags to create meaning in your code.
- Describe some differences between
display: block;anddisplay: inline;.
Inline means it does not take up the entire width of the page (you can put more than 1 on a line). Block means it takes up the entire width of the page (by default you cannot put more than 1 on a line)
- 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?
align is using the vertical axis.
- What is the git command to commit staged changes as well as write a message?
git commit -m "message here"