Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 735 Bytes

File metadata and controls

10 lines (10 loc) · 735 Bytes
  1. 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.
  2. Describe some differences between display: block; and display: 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.
  3. What are the 4 areas of the box model? Content, padding, border, margin
  4. While using flexbox, what axis are you using when you use the property: align-items: center? You are using the cross axis.
  5. What is the git command to commit staged changes as well as write a message? git commit -m