Foundations of Web Development

... About 2 min

# Foundations of Web Development

1. In the terminal, what is the command cd used for?

The term cd stands for change directory. It is used to navigate in between files on your computer.
1

2. In the terminal, what is the command mkdir used for?

The term stands for make directory. It is used to make new files in the folder you are in.
1

3. What is the \<html>\</html> tag in a document?

The tag is for everything in the document. Everything but the doctype goes in the HTML tag.
1

4. What does HTML stand for?

HTML stands for HyperText Markup Language. It is the skeleton of the website.
1

5. What Does CSS stand for?

CSS stands for Cascading Style Sheets. It is generally used for making the sites look better.
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
First in the rule is the selector. This is how you call it in your HTML. Next is the property, which is telling the code what you want to change. The last part is the value, and this is where you tell the code what to change it to after telling it what to change.
1

7. What property would you change if you wanted to make a font Bold?

You would change the text property. You would change the value to bold.
1

8. In what tag does the majority of your code belong?

Most of your code belongs in the body tag. You have the head tag, and taht is where you import all the info, but the majority of the code you write will be in the body tag.
1

9. What three tags can be used to make lists (not list items)?

The three types of lists that I found were the ordered lists, the unordered lists, and the descriptive lists. Unordered lists often just have bulletpoints, while ordered lists have numbers on the list, and descriptive lists have an item, and then another item to describe it.
1

10. Define the display :flex property:

The property flex is used to make the site better by letting the parents decide how to space the children inside of them. Instead of just having everything in a line down, if you use flex, you can make it so that some elements are next to each other.
1

11. What CSS properties affect the size of a box model?

The two main properties that affect the size of a box model are width and height. You can measure them in many different units, and some common ones are px, % and vh and vw.
1