HTML
CSS
JavaScript
Images
Misc.
5

The format to close a <head> tag

What is </head>?

5

The command to set text color

What is color?

5

The syntax to define a function called mystery.

What is function mystery() {}?

5

The website we used to edit images

What is Pixlr?

5

The format for a comment.

What is <!-- This is a comment -->?

10

The opening tag for an ordered list

What is <ol>?

10

The command to set font type

What is font-family?

10

The command for a pop-up containing text

What is alert()?

10

The opening tag to insert an image called background.jpg into a website

What is <img src="background.jpg>?

10

The type of cipher that uses a phrase(a key) to decode and encode text

What is Vignere cipher?

15

The opening tag for a table element

What is <td>?

15

Fill in the blank to style a link that is being clicked on:

___ {

color: black;

}

What is a:active?

15

The characters that always come before a one-line comment in JavaScript

What is //?

15

DOUBLE JEOPARDY!

The word for an image that starts at one color and transitions to another.

What is a gradient?

15

The letters in HTML's meaning

What is Hypertext Markup Language?

20

The opening tag to make text bold

What is <strong>?

20

The command to remove the underline from a link

What is text-decoration: none?

20

The command to open a new window with the image "gradient.png"

What is open("gradient.png")?

20

The set of CSS commands to insert a background image to the body tag with the following link: https://www.fakeimage.com/

What is body{background-image: url("https://www.fakeimage.com/");}?

20

The command to create a password text box

What is <input type="password">?

25

The number of header tags that exist in HTML(Ex. <h1>, <h2>, etc.)

What is 6?

25

The command to fade from one color to another in 1 second, for example, when I hover over a link the color fades from blue to dark blue.

What is transition: 1s?

25

The command to create an integer variable named example with a value of 5

What is var example = 5?

25

The way to change the following tag to make the image clickable and to initiate a pop-up alert: <img src="image.png">

What is adding onclick="popup();" and defining function popup() { alert("Alert"); } in JavaScript?

25

The command to link a JavaScript document called script.js to an HTML document

What is <script src="script.js">?

M
e
n
u