HTML
CSS
Design
Internet Jargon
Flexbox
100

This is the total number of heading tags that exist.

What is "6"?

100

The aspect of the HTML that you are attempting to change in CSS is called this.

What is a "selector"?

100

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

100

A computer that hosts a website or other service on the internet

a server

100

What do property and value do I need to put in CSS to turn on flexbox?

display:flex;

200

Everything that renders on the page goes between these tags.

What is the <body> tag?

200

What are the four parts of the box model?

content, padding, border, margin

200

Your legal right to exclusive use of your own creations.

copyright

200

The root-relative path to "styles.css" inside the "stylesheets" folder.

"/stylesheets/styles.css"

200

What justify-content value would align all HTML elements to the right of the page?

flex-end

300

This is the attribute associated with <img> tags.

What is "src" (or source)?

300

In the code below, what is missing?


h1{
    background-color: blue
}

What is  a "semicolon"?

300

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

300

The protocol associated with the URL https://www.flaminglasers.com/aha/take_on_me.mp3

HTTPS

300

What justify-content value would align all HTML elements to the right of the page?

flex-start

400

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>

400
This is the symbol used in CSS to represent a class.

What is "a period"?

400

Repetition is used to emphasize sameness.  The design principle used to emphasize differentness is _.

What is "contrast."

400

Name one website builder that helps you make websites without knowing how to code.

Wix, Wordpress, Weebly, Google Sites, Geocities, Dreamweaver

400

What justify-content value would align all HTML elements to the center?

center

500

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.

500

Write the CSS code that would make all "img" tags of a class "homepage" 100px's wide. 

.homepage{

     width: 100px;

}


500

The color represented by the hex code #FFFF00?

yellow

500

The server that gives your browser the IP address for the site or domain you're trying to reach.

DNS or Domain Name Service

500

Write the CSS that would add space between items in a div with the class of "header" 

.header{
        display:flex;
        justify-content: space-between;
}