Skip to content

lambdaschoolcoursework/user-interface-and-git-sprint-challenge

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Self-Study Questions

  1. If you were to describe semantic HTML to the next cohort of students, what would you say?

Semantic HTML essentially means to give your HTML meaning. You want to give titles h1, h2, h3, h4, h5, etc. tags in order of importance. You want to have a header, main, and footer. You want to give everything in your HTML the appropriate tag and not contain everything with divs. You also want to name classes and id's in a way that it correlates with its function. All of these things help with SEO and allowing screen readers to read information correctly for the disabled.

  1. Name two big differences between display: block; and display: inline;.

The difference between "display: block" and "display: inline" is that "display: block" elements take up all of the space that they possibly can, while "inline: block" elements take up only the space that they need.

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

The 4 areas of the box model include the content, the padding, the border, and the margin, in that order.

  1. While using flexbox, what axis does the following property work on: align-items: center?

"Align-items: center" works on the cross axis which is the vertical axis.

  1. Explain why git is valuable to a team of developers.

Git is a version control system. A team of developers can save different versions of their project and go back to them if need be. They can also create seperate branches for several features of the website that different people can work on. Then, they can merge into the master branch, which is the branch that will be seen by the users.

About

Created a website from several design files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 61.9%
  • CSS 38.1%