CSS Basics
Links
Relative URLs
Color Theory
Fonts
HTML Review
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

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

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

All three primary colors.

What are Red, Yellow, and Blue?

100

The name of the website where you can find hundreds of free fonts to embed in your website.

100

The tag in which you place everything you want the user to see on your website.

What is <body>?

200

The specific name for the type of CSS when it is added to an individual HTML tag.

What is inline CSS?

200

The attribute needed for creating links in HTML.

What is href?

200

The symbol added to the href attribute meaning "move backwards out of this folder."

What is "../"?

200

One example of a tertiary color.

Red-Orange, Yellow-Green, Blue-Green, etc.

200

The two main types of fonts.

What are serif and sans-serif?

200

The tag that contains the title.

What is <head>?

300

Two differences in coding syntax between a CSS statement and an HTML attribute (think about images).

What is an : instead of a =,  and a ; at the end of the line.

300

The Symbol for a Placeholder Link

What is a hashtag?

300

An example of an image called "cutedog.webp" The image is inside of a folder called "pets", which is inside of another folder called "images."

What is <img src="images/pets/cutedog.webp">?
300

This type of code is used to denote colors in Web Design.

What is hexadecimal code?

300

The CSS declaration for changing a font.

What is font-family?

300

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

What is <ol type="I">?

400

This is what CSS stands for.

Cascading Style Sheets.

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

A complete example of an image tag that displays "smile.jpg" found inside of the "images" folder, with the width set to 200 and the alt text of "a smiley face."

What is <img src="images/smile.jpg" width="200" alt="a smiley face">?

400

A shade of purple in hex code.

What is #FF00FF?

400

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

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

400

The three tags you've learned so far that are self-closing.

What are <br>, <hr>, and <img>?

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 everything needed to create a working Anchor or "Jump" link to the bottom of your webpage in HTML.

<a href="#bottom">Click here to go to the bottom of the page</a>


<h3 id="bottom">The bottom of the page</h3>

500

An example of the HTML code displaying an image named "cool.png." The image is inside the Downloads folder, while the HTML page you're working with is in a folder named "MyWebProject" INSIDE of "Downloads."

What is <img src="../cool.png">?

500

Three specific types of color schemes.

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

500

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>

500

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

What is:

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

</body>
</html>

?

600

An unordered list containing three of the four types of links that we've learned in HTML.

What is:

<ul>

<li><a href="Gallery.html">Internal Link</a></li>
<li><a href="#">Placeholder Link</a></li>
<li><a href="https://www.google.com">External Link</a></li>

</ul>

600

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;">?

600

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;">?

M
e
n
u