Skip to content

Latest commit

 

History

History
39 lines (12 loc) · 813 Bytes

File metadata and controls

39 lines (12 loc) · 813 Bytes
  1. If you had to describe semantic HTML to the next cohort of students, what would you say?

Semantic HTML provides more specific information about the page. Semantic HTML tags provide browsers meaning and contents of the page.

  1. Describe some differences between display: block; and display: inline;

display: block; items take all the space across the page and have a line break, display: inline; items size is relative to the content, no line break, doesn't respect width, height and other block properties.

  1. 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?

cross axis

What is the git command to commit staged changes as well as write a message?

git commit -m ""