Foundations of Web Development
... About 1 min
# Foundations of Web Development
1. In the terminal, what is the command cd
used for?
Change Directory
1
2. In the terminal, what is the command mkdir
used for?
Make New Directory
1
3. What is the \<html>\</html>
tag in a document?
It is the tag that shows up at the start and finish of a document to let the browser know to read it as an HTML5 document.
1
4. What does HTML
stand for?
Hyper Text Markup Language
1
5. What Does CSS
stand for?
Cascading Style Sheets
1
6. What are the three components that makeup a CSS
rule?
Example:
h1.main-title {
color : rgba(255, 210, 33, .75);
}
1
2
3
2
3
The Selector, Declaration, and another Declaration.
1
7. What property would you change if you wanted to make a font Bold?
Within your text tags you would put the strong tag, surrounding the words you want to be bolded.
1
8. In what tag does the majority of your code belong?
The body tag.
1
9. What three tags can be used to make lists (not list items)?
ul for unordered list, ol for ordered list, and dl for list item definitions.
1
10. Define the display :flex property:
The flex property allows sections of your html to wrap around eachother and shrink according to the size of your browser window, or mobile device.
1
11. What CSS
properties affect the size of a box model?
Content, padding, border and margin.
1