CSS Basics
Links
Tables & Layout
Color Theory
Fonts
Back to Basics
(HTML Review)
Pot Pourri
(Random Trivia)
100

The attribute used before typing any CSS code into an HTML tag.

What is style?

100

The tag for creating links in HTML.

What is <a>?

100

The tags used to start and end a table.

<table> and </table>

100

All three primary colors.

What are Red, Yellow, and Blue?

100

The two main types of fonts.

What are serif and sans-serif?

100

The tag in which you place everything you want the user to see on your website when viewed in a web browser.

What is <body>?

100

In basketball, this is how many points is a free throw worth.

One

200

The CSS properties for changing the text color and background color of an HTML element.

background-color and color

200

The attribute needed for creating links in HTML.

What is href?

200

The three opening tags needed to create a working table.

<table>, <tr>, and <td>

200

The name of the code we use to reference specific colors in CSS.

What is hexadecimal code? (Hex Code)

200

The CSS declaration for changing a font.

What is font-family?

200

The tag that contains the title.

What is <head>?

200

This is the only metal that's liquid at room temperature.

Mercury (Hg)

300

(DOUBLE JEOPARDY)
This is what CSS stands for.

Cascading Style Sheets.

300

A complete example of an <a> tag that leads to "ContactPage.html."

What is <a href="ContactPage.html">Click Here</a>

300

The attribute that stretches a <td> tag across multiple columns.

colspan

300

A shade of purple in hex code.

What is #FF00FF?

300

A complete example of the CSS declaration used to change the size of your text.

What is "font-size:72px;"?

300

An example of the opening tag for an ordered list that uses roman numerals.

What is <ol type="I">?

300

This U.S. state has the most active volcanoes.

Alaska

400

An complete example of an <h2> tag with CSS to center its text.

<h2 style="text-align:center;">Heading!</h2>

400

A complete example of a link to the webpage "hobbies.html", which can be found inside of a "pages" folder.

<a href="pages/hobbies.html">Click here to discover my hobbies!</a>

400

List the Five Parts of a Website

Header, Nav Menu, Sidebar, Main Content, Footer

400

Three specific types of color schemes.

What are complimentary, triadic, analogous, monochromatic, etc.

400

A complete example of an HTML link to Google's homepage that uses a unique font called "Gotham."

What is <a href="https://www.google.com/" style="font-family:Gotham;">Click Here</a>

400

These are three tags that are self-closing.

<br>, <hr>, <img>, or <link>

400

This animal’s fingerprints are so similar to humans’ that they can confuse crime scene investigators.

Koala

500

An example of a single paragraph with CSS that changes both font to Arial and text color to a shade of blue.

What is <p style="font-family:arial; color: #0000FF;">My Paragraph</a>

500

A complete example of a link to YouTube that opens in a new Tab.

<a href="https://www.youtube.com/" target="_blank">Click here to go to YouTube!</a>

500

(FREE FOR ALL)

Create a 2x2 table that uses either colspan or rowspan effectively.

<table>
<tr>
<td colspan="2">Hi</td>
</tr>
<td>This is</td>
<td>A table</td>
</table>

500

A complete example of an opening h1 tag that has a background color of blue and a text color of red, without using the names of the colors.

What is <h1 style="background-color: #0000FF; color: #FF0000;">?

500

A complete example of an opening paragraph tag that is set to the "Arial" font, with two backups in the CSS declaration in case "Arial" is not available.

What is <p style="font-family: Arial, Verdana, sans-serif;">?

500

A complete example, including all opening and closing tags, of how every HTML file should look before you begin to design your website.

(FREE FOR ALL)

<!DOCTYPE html>
<html>
<head><title></title></head>
<body>

</body>
</html>

500

The closest star to Earth is the Sun. Which star is the next closest?

Alpha Centauri

M
e
n
u