Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 829 Bytes

File metadata and controls

20 lines (11 loc) · 829 Bytes
  1. 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.

  1. Describe some differences between display: block; and display: 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.

  1. What are the 4 areas of the box model?

Margin, Border, Padding, Content

  1. While using flexbox, what axis are you using when you use the property: align-items: center?

The cross-axis

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

git commit -m "Commit message goes here inside quotes!"