- If you had to describe semantic HTML to the next cohort of students, what would you say?
Semantic HTML is when you use tags that convey meaning such as: address, section, h1, or aside,instead of tags like a div which by itself could mean anything.
- Describe some differences between
display: block;anddisplay: inline;.
Block elements start on a new line, and respect width and height values. Inline elements do not respect width or height values and are displayed inline.
- What are the 4 areas of the box model?
Margin, Border, Padding, Content
- While using flexbox, what axis are you using when you use the property:
align-items: center?
The cross-axis
- What is the git command to commit staged changes as well as write a message?
git commit -m "Commit message goes here inside quotes!"