Foundations of Web Development
2021-8-16 Less than 1 minute
# 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 Directory
1
3. What is the \<html>\</html>
tag in a document?
The container for all HTML elements.
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
selector {
property: value;
}
1
2
3
2
3
7. What property would you change if you wanted to make a font Bold?
value
1
8. In what tag does the majority of your code belong?
the <body></body> tag in an html document
1
9. What three tags can be used to make lists (not list items)?
unordered list <ul>
ordered list <ol>
description list <dl>
1
2
3
2
3
10. Define the display :flex property:
Flex Property is used to set the length of flexible items.
1
11. What CSS
properties affect the size of a box model?
Margin and Padding
1