Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 799 Bytes

File metadata and controls

23 lines (14 loc) · 799 Bytes
  1. 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.

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

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

content. padding. border. margin.

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

align is using the vertical axis.

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

git commit -m "message here"