This is the total number of heading tags that exist.
What is "6"?
The aspect of the HTML that you are attempting to change in CSS is called this.
What is a "selector"?
Originally pulled from Cicero's book "The Extremes of Good and Evil", this traditional filler text is used to test out text layouts both in print and online.
lorem ipsum
A computer that hosts a website or other service on the internet
a server
What do property and value do I need to put in CSS to turn on flexbox?
display:flex;
Everything that renders on the page goes between these tags.
What is the <body> tag?
What are the four parts of the box model?
content, padding, border, margin
Your legal right to exclusive use of your own creations.
copyright
The root-relative path to "styles.css" inside the "stylesheets" folder.
"/stylesheets/styles.css"
What justify-content value would align all HTML elements to the right of the page?
flex-end
This is the attribute associated with <img> tags.
What is "src" (or source)?
In the code below, what is missing?
h1{
background-color: blue
}
What is a "semicolon"?
This layout is characterized by navbars, footers, and images that reach "beyond the margins" and to the far edges of the window.
full-bleed layout
What justify-content value would align all HTML elements to the right of the page?
flex-start
Write the code that could correctly render an a link to Facebook with the text "Go to Facebook".
<a href="https://facebook.com">Go to Facebook</a>
What is "a period"?
Repetition is used to emphasize sameness. The design principle used to emphasize differentness is _.
What is "contrast."
Name one website builder that helps you make websites without knowing how to code.
Wix, Wordpress, Weebly, Google Sites, Geocities, Dreamweaver
What justify-content value would align all HTML elements to the center?
center
What two steps do you need to follow to add a Google Font?
*Rebecca taught about this.
1. Add the link to the font to the head.
2. Use the property "font-family" in CSS to write the font.
Write the CSS code that would make all "img" tags of a class "homepage" 100px's wide.
.homepage{
width: 100px;
}
The color represented by the hex code #FFFF00?
yellow
The server that gives your browser the IP address for the site or domain you're trying to reach.
DNS or Domain Name Service
Write the CSS that would add space between items in a div with the class of "header"
.header{
display:flex;
justify-content: space-between;
}